Class Vector3
Definition
- Namespace:
- Tizen.NUI
- Assembly:
- Tizen.NUI.dll
- API Level:
- 3
A three-dimensional vector.
C#Copypublic class Vector3 : Disposable, IDisposable, ICloneable
- Inheritance
- Implements
-
System.IDisposableSystem.ICloneable
Constructors
Declaration
C#Copypublic Vector3()
API Level: 3
Declaration
C#Copypublic Vector3(float x, float y, float z)
Parameters
Type | Name | Description |
---|---|---|
System.Single | x | The x (or width) component. |
System.Single | y | The y (or height) component. |
System.Single | z | The z (or depth) component. |
API Level: 3
Declaration
C#Copypublic Vector3(float[] array)
Parameters
Type | Name | Description |
---|---|---|
System.Single[] | array | An array of xyz. |
API Level: 3
Declaration
C#Copypublic Vector3(Vector2 vec2)
Parameters
Type | Name | Description |
---|---|---|
Vector2 | vec2 | Vector2 to create this vector from. |
API Level: 3
Declaration
C#Copypublic Vector3(Vector4 vec4)
Parameters
Type | Name | Description |
---|---|---|
Vector4 | vec4 | Vector4 to create this vector from. |
API Level: 3
Properties
Declaration
C#Copypublic float B { get; [Obsolete("Do not use this setter, that is deprecated in API8 and will be removed in API10. Use new Vector3(...) constructor")] set; }
Property Value
Type | Description |
---|---|
System.Single |
Remarks
The setter is deprecated in API8 and will be removed in API10. Use new Vector3(...) constructor.
API Level: 3
Declaration
C#Copypublic float Depth { get; [Obsolete("Do not use this setter, that is deprecated in API8 and will be removed in API10. Use new Vector3(...) constructor")] set; }
Property Value
Type | Description |
---|---|
System.Single |
Remarks
The setter is deprecated in API8 and will be removed in API10. Use new Vector3(...) constructor.
API Level: 3
Declaration
C#Copypublic float G { get; [Obsolete("Do not use this setter, that is deprecated in API8 and will be removed in API10. Use new Vector3(...) constructor")] set; }
Property Value
Type | Description |
---|---|
System.Single |
Remarks
The setter is deprecated in API8 and will be removed in API10. Use new Vector3(...) constructor.
API Level: 3
Declaration
C#Copypublic float Height { get; [Obsolete("Do not use this setter, that is deprecated in API8 and will be removed in API10. Use new Vector3(...) constructor")] set; }
Property Value
Type | Description |
---|---|
System.Single |
Remarks
The setter is deprecated in API8 and will be removed in API10. Use new Vector3(...) constructor.
API Level: 3
Declaration
C#Copypublic float this[uint index] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.UInt32 | index | The subscript index. |
Property Value
Type | Description |
---|---|
System.Single | The float at the given index. |
API Level: 3
Declaration
C#Copypublic static Vector3 NegativeXAxis { get; }
Property Value
Type | Description |
---|---|
Vector3 |
API Level: 3
Declaration
C#Copypublic static Vector3 NegativeYAxis { get; }
Property Value
Type | Description |
---|---|
Vector3 |
API Level: 3
Declaration
C#Copypublic static Vector3 NegativeZAxis { get; }
Property Value
Type | Description |
---|---|
Vector3 |
API Level: 3
Declaration
C#Copypublic static Vector3 One { get; }
Property Value
Type | Description |
---|---|
Vector3 |
API Level: 3
Declaration
C#Copypublic float R { get; [Obsolete("Do not use this setter, that is deprecated in API8 and will be removed in API10. Use new Vector3(...) constructor")] set; }
Property Value
Type | Description |
---|---|
System.Single |
Remarks
The setter is deprecated in API8 and will be removed in API10. Use new Vector3(...) constructor.
API Level: 3
Declaration
C#Copypublic float Width { get; [Obsolete("Do not use this setter, that is deprecated in API8 and will be removed in API10. Use new Vector3(...) constructor")] set; }
Property Value
Type | Description |
---|---|
System.Single |
Remarks
The setter is deprecated in API8 and will be removed in API10. Use new Vector3(...) constructor.
API Level: 3
Declaration
C#Copypublic float X { get; [Obsolete("Do not use this setter, that is deprecated in API8 and will be removed in API10. Use new Vector3(...) constructor")] set; }
Property Value
Type | Description |
---|---|
System.Single |
Remarks
The setter is deprecated in API8 and will be removed in API10. Use new Vector3(...) constructor.
API Level: 3
Declaration
C#Copypublic static Vector3 XAxis { get; }
Property Value
Type | Description |
---|---|
Vector3 |
API Level: 3
Declaration
C#Copypublic float Y { get; [Obsolete("Do not use this setter, that is deprecated in API8 and will be removed in API10. Use new Vector3(...) constructor")] set; }
Property Value
Type | Description |
---|---|
System.Single |
Remarks
The setter is deprecated in API8 and will be removed in API10. Use new Vector3(...) constructor.
API Level: 3
Declaration
C#Copypublic static Vector3 YAxis { get; }
Property Value
Type | Description |
---|---|
Vector3 |
API Level: 3
Declaration
C#Copypublic float Z { get; [Obsolete("Do not use this setter, that is deprecated in API8 and will be removed in API10. Use new Vector3(...) constructor")] set; }
Property Value
Type | Description |
---|---|
System.Single |
Remarks
The setter is deprecated in API8 and will be removed in API10. Use new Vector3(...) constructor.
API Level: 3
Declaration
C#Copypublic static Vector3 ZAxis { get; }
Property Value
Type | Description |
---|---|
Vector3 |
API Level: 3
Declaration
C#Copypublic static Vector3 Zero { get; }
Property Value
Type | Description |
---|---|
Vector3 |
API Level: 3
Methods
Declaration
C#Copypublic void Clamp(Vector3 min, Vector3 max)
Parameters
Type | Name | Description |
---|---|---|
Vector3 | min | The minimum vector. |
Vector3 | max | The maximum vector. |
API Level: 3
Declaration
C#Copypublic override bool Equals(Object obj)
Parameters
Type | Name | Description |
---|---|---|
Tizen.System.Object | obj | The object to compare with the current object. |
Returns
Type | Description |
---|---|
Boolean | true if the specified object is equal to the current object; otherwise, false. |
Declaration
C#Copypublic override int GetHashCode()
Returns
Type | Description |
---|---|
Int32 | The Hash Code. |
Overrides
API Level: 6
GetVectorXY()
Returns the x and y components (or width and height, or r and g) as a Vector2.
Declaration
C#Copypublic Vector2 GetVectorXY()
Returns
Type | Description |
---|---|
Vector2 | The partial vector contents as Vector2 (x,y). |
API Level: 3
GetVectorYZ()
Returns the y and z components (or height and depth, or g and b) as a Vector2.
Declaration
C#Copypublic Vector2 GetVectorYZ()
Returns
Type | Description |
---|---|
Vector2 | The partial vector contents as Vector2 (y,z). |
API Level: 3
Declaration
C#Copypublic float Length()
Returns
Type | Description |
---|---|
System.Single | The length of the vector. |
API Level: 3
LengthSquared()
Returns the length of the vector squared.
This is more efficient than Length() for threshold
testing as it avoids the use of a square root.
Declaration
C#Copypublic float LengthSquared()
Returns
Type | Description |
---|---|
System.Single | The length of the vector squared. |
API Level: 3
Declaration
C#Copypublic void Normalize()
API Level: 3
Operators
Declaration
C#Copypublic static Vector3 operator +(Vector3 arg1, Vector3 arg2)
Parameters
Type | Name | Description |
---|---|---|
Vector3 | arg1 | The first value. |
Vector3 | arg2 | The second value. |
Returns
Type | Description |
---|---|
Vector3 | The vector containing the result of the addition. |
API Level: 3
Declaration
C#Copypublic static Vector3 operator /(Vector3 arg1, float arg2)
Parameters
Type | Name | Description |
---|---|---|
Vector3 | arg1 | The first value. |
System.Single | arg2 | The float value to scale the vector by. |
Returns
Type | Description |
---|---|
Vector3 | The vector containing the result of the scaling. |
API Level: 3
Declaration
C#Copypublic static Vector3 operator /(Vector3 arg1, Vector3 arg2)
Parameters
Type | Name | Description |
---|---|---|
Vector3 | arg1 | The first value. |
Vector3 | arg2 | The second value. |
Returns
Type | Description |
---|---|
Vector3 | The vector containing the result of the division. |
API Level: 3
Declaration
C#Copypublic static Vector3 operator *(Vector3 arg1, float arg2)
Parameters
Type | Name | Description |
---|---|---|
Vector3 | arg1 | The first value. |
System.Single | arg2 | The float value to scale the vector. |
Returns
Type | Description |
---|---|
Vector3 | The vector containing the result of the scaling. |
API Level: 3
Declaration
C#Copypublic static Vector3 operator *(Vector3 arg1, Vector3 arg2)
Parameters
Type | Name | Description |
---|---|---|
Vector3 | arg1 | The first value. |
Vector3 | arg2 | The second value. |
Returns
Type | Description |
---|---|
Vector3 | The vector containing the result of the multiplication. |
API Level: 3
Declaration
C#Copypublic static Vector3 operator -(Vector3 arg1, Vector3 arg2)
Parameters
Type | Name | Description |
---|---|---|
Vector3 | arg1 | The first value. |
Vector3 | arg2 | The second value. |
Returns
Type | Description |
---|---|
Vector3 | The vector containing the result of the subtraction. |
API Level: 3
Declaration
C#Copypublic static Vector3 operator -(Vector3 arg1)
Parameters
Type | Name | Description |
---|---|---|
Vector3 | arg1 | The target value. |
Returns
Type | Description |
---|---|
Vector3 | The vector containg the negation. |