Class Vector2
Definition
- Namespace:
- Tizen.NUI
- Assembly:
- Tizen.NUI.dll
- API Level:
- 3
A two-dimensional vector.
C#Copypublic class Vector2 : Disposable, ICloneable
- Inheritance
- Implements
-
ICloneable
Constructors
Declaration
C#Copypublic Vector2()
API Level: 3
Declaration
C#Copypublic Vector2(float x, float y)
Parameters
Type | Name | Description |
---|---|---|
Single | x | The x or width component. |
Single | y | The y or height component. |
API Level: 3
Declaration
C#Copypublic Vector2(float[] array)
Parameters
Type | Name | Description |
---|---|---|
Single[] | array | The array of xy. |
API Level: 3
Declaration
C#Copypublic Vector2(Vector2 other)
Parameters
Type | Name | Description |
---|---|---|
Vector2 | other | The copy target. |
Declaration
C#Copypublic Vector2(Vector3 vec3)
Parameters
Type | Name | Description |
---|---|---|
Vector3 | vec3 | Vector3 to create this vector from. |
API Level: 3
Declaration
C#Copypublic Vector2(Vector4 vec4)
Parameters
Type | Name | Description |
---|---|---|
Vector4 | vec4 | Vector4 to create this vector from. |
API Level: 3
Properties
Declaration
C#Copypublic float Height { get; set; }
Property Value
Type | Description |
---|---|
Single |
Remarks
The setter is deprecated in API8 and will be removed in API10. Use new Vector2(...) constructor.
API Level: 3
Declaration
C#Copypublic float this[uint index] { get; }
Parameters
Type | Name | Description |
---|---|---|
UInt32 | index | The subscript index. |
Property Value
Type | Description |
---|---|
Single | The float at the given index. |
API Level: 3
Declaration
C#Copypublic static Vector2 NegativeXAxis { get; }
Property Value
Type | Description |
---|---|
Vector2 |
API Level: 3
Declaration
C#Copypublic static Vector2 NegativeYAxis { get; }
Property Value
Type | Description |
---|---|
Vector2 |
API Level: 3
Declaration
C#Copypublic static Vector2 One { get; }
Property Value
Type | Description |
---|---|
Vector2 |
API Level: 3
Declaration
C#Copypublic float Width { get; set; }
Property Value
Type | Description |
---|---|
Single |
Remarks
The setter is deprecated in API8 and will be removed in API10. Use new Vector2(...) constructor.
API Level: 3
Declaration
C#Copypublic float X { get; set; }
Property Value
Type | Description |
---|---|
Single |
Remarks
The setter is deprecated in API8 and will be removed in API10. Use new Vector2(...) constructor.
API Level: 3
Declaration
C#Copypublic static Vector2 XAxis { get; }
Property Value
Type | Description |
---|---|
Vector2 |
API Level: 3
Declaration
C#Copypublic float Y { get; set; }
Property Value
Type | Description |
---|---|
Single |
Remarks
The setter is deprecated in API8 and will be removed in API10. Use new Vector2(...) constructor.
API Level: 3
Declaration
C#Copypublic static Vector2 YAxis { get; }
Property Value
Type | Description |
---|---|
Vector2 |
API Level: 3
Declaration
C#Copypublic static Vector2 Zero { get; }
Property Value
Type | Description |
---|---|
Vector2 |
API Level: 3
Methods
Declaration
C#Copypublic void Clamp(Vector2 min, Vector2 max)
Parameters
Type | Name | Description |
---|---|---|
Vector2 | min | The minimum vector. |
Vector2 | max | The maximum vector. |
API Level: 3
Declaration
C#Copypublic object Clone()
Returns
Type | Description |
---|---|
Object |
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. |
API Level: 6
Declaration
C#Copypublic float Length()
Returns
Type | Description |
---|---|
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 |
---|---|
Single | The length of the vector squared |
API Level: 3
Declaration
C#Copypublic void Normalize()
API Level: 3
Declaration
C#Copyprotected override void ReleaseSwigCPtr(Runtime.InteropServices.HandleRef swigCPtr)
Parameters
Type | Name | Description |
---|---|---|
Tizen.System.Runtime.InteropServices.HandleRef | swigCPtr |
Overrides
Operators
Declaration
C#Copypublic static Vector2 operator +(Vector2 arg1, Vector2 arg2)
Parameters
Type | Name | Description |
---|---|---|
Vector2 | arg1 | The first value. |
Vector2 | arg2 | The second value. |
Returns
Type | Description |
---|---|
Vector2 | The vector containing the result of the addition. |
API Level: 3
Declaration
C#Copypublic static Vector2 operator /(Vector2 arg1, float arg2)
Parameters
Type | Name | Description |
---|---|---|
Vector2 | arg1 | The first value. |
Single | arg2 | The float value to scale the vector by. |
Returns
Type | Description |
---|---|
Vector2 | The vector containing the result of the scaling. |
API Level: 3
Declaration
C#Copypublic static Vector2 operator /(Vector2 arg1, Vector2 arg2)
Parameters
Type | Name | Description |
---|---|---|
Vector2 | arg1 | The first value. |
Vector2 | arg2 | The second value. |
Returns
Type | Description |
---|---|
Vector2 | The vector containing the result of the division. |
API Level: 3
Declaration
C#Copypublic static Vector2 operator *(Vector2 arg1, float arg2)
Parameters
Type | Name | Description |
---|---|---|
Vector2 | arg1 | The first value. |
Single | arg2 | The float value to scale the vector. |
Returns
Type | Description |
---|---|
Vector2 | The vector containing the result of the scaling. |
API Level: 3
Declaration
C#Copypublic static Vector2 operator *(Vector2 arg1, Vector2 arg2)
Parameters
Type | Name | Description |
---|---|---|
Vector2 | arg1 | The first value. |
Vector2 | arg2 | The second value. |
Returns
Type | Description |
---|---|
Vector2 | The vector containing the result of the multiplication. |
API Level: 3
Declaration
C#Copypublic static Vector2 operator -(Vector2 arg1, Vector2 arg2)
Parameters
Type | Name | Description |
---|---|---|
Vector2 | arg1 | The first value. |
Vector2 | arg2 | The second value. |
Returns
Type | Description |
---|---|
Vector2 | The vector containing the result of the subtraction. |
API Level: 3
Declaration
C#Copypublic static Vector2 operator -(Vector2 arg1)
Parameters
Type | Name | Description |
---|---|---|
Vector2 | arg1 | The target value. |
Returns
Type | Description |
---|---|
Vector2 | The vector containing the negation. |