Class RelativeVector2
Definition
- Namespace:
- Tizen.NUI
- Assembly:
- Tizen.NUI.dll
- API Level:
- 3
RelativeVector2 is a two-dimensional vector. Both values (x and y) should be between [0, 1].
C#Copypublic class RelativeVector2 : Disposable
- Inheritance
Constructors
Declaration
C#Copypublic RelativeVector2()
API Level: 3
Declaration
C#Copypublic RelativeVector2(float x, float y)
Parameters
Type | Name | Description |
---|---|---|
Single | x | The x component. |
Single | y | The y component. |
API Level: 3
Declaration
C#Copypublic RelativeVector2(RelativeVector3 relativeVector3)
Parameters
Type | Name | Description |
---|---|---|
RelativeVector3 | relativeVector3 | The RelativeVector3 to create this vector from. |
API Level: 3
Declaration
C#Copypublic RelativeVector2(RelativeVector4 relativeVector4)
Parameters
Type | Name | Description |
---|---|---|
RelativeVector4 | relativeVector4 | The RelativeVector4 to create this vector from. |
API Level: 3
Properties
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 float X { get; set; }
Property Value
Type | Description |
---|---|
Single |
Remarks
The setter is deprecated in API8 and will be removed in API10. Use new RelativeVector2(...) constructor.
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 RelativeVector2(...) constructor.
API Level: 3
Methods
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 bool EqualTo(RelativeVector2 rhs)
Parameters
Type | Name | Description |
---|---|---|
RelativeVector2 | rhs | The vector to compare. |
Returns
Type | Description |
---|---|
Boolean | Returns true if the two vectors are equal, otherwise false. |
API Level: 3
Declaration
C#Copypublic override int GetHashCode()
Returns
Type | Description |
---|---|
Int32 | The Hash Code. |
API Level: 6
Declaration
C#Copypublic bool NotEqualTo(RelativeVector2 rhs)
Parameters
Type | Name | Description |
---|---|---|
RelativeVector2 | rhs | The vector to compare. |
Returns
Type | Description |
---|---|
Boolean | Returns true if the two vectors are not equal, otherwise false. |
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 RelativeVector2 operator +(RelativeVector2 arg1, RelativeVector2 arg2)
Parameters
Type | Name | Description |
---|---|---|
RelativeVector2 | arg1 | The vector to add. |
RelativeVector2 | arg2 | The vector to add. |
Returns
Type | Description |
---|---|
RelativeVector2 | The vector containing the result of the addition. |
API Level: 3
Declaration
C#Copypublic static RelativeVector2 operator /(RelativeVector2 arg1, float arg2)
Parameters
Type | Name | Description |
---|---|---|
RelativeVector2 | arg1 | The vector to divide. |
Single | arg2 | The float value to scale the vector by. |
Returns
Type | Description |
---|---|
RelativeVector2 | The vector containing the result of the scaling. |
API Level: 3
Declaration
C#Copypublic static RelativeVector2 operator /(RelativeVector2 arg1, RelativeVector2 arg2)
Parameters
Type | Name | Description |
---|---|---|
RelativeVector2 | arg1 | The vector to divide. |
RelativeVector2 | arg2 | The vector to divide. |
Returns
Type | Description |
---|---|
RelativeVector2 | The vector containing the result of the division. |
API Level: 3
Declaration
C#Copypublic static implicit operator Vector2(RelativeVector2 relativeVector2)
Parameters
Type | Name | Description |
---|---|---|
RelativeVector2 | relativeVector2 |
Returns
Type | Description |
---|---|
Vector2 |
API Level: 3
Declaration
C#Copypublic static implicit operator RelativeVector2(Vector2 vec)
Parameters
Type | Name | Description |
---|---|---|
Vector2 | vec |
Returns
Type | Description |
---|---|
RelativeVector2 |
API Level: 3
Declaration
C#Copypublic static RelativeVector2 operator *(RelativeVector2 arg1, float arg2)
Parameters
Type | Name | Description |
---|---|---|
RelativeVector2 | arg1 | The vector to multiply. |
Single | arg2 | The float value to scale the vector. |
Returns
Type | Description |
---|---|
RelativeVector2 | The vector containing the result of the scaling. |
API Level: 3
Declaration
C#Copypublic static RelativeVector2 operator *(RelativeVector2 arg1, RelativeVector2 arg2)
Parameters
Type | Name | Description |
---|---|---|
RelativeVector2 | arg1 | The vector to multiply. |
RelativeVector2 | arg2 | The vector to multiply. |
Returns
Type | Description |
---|---|
RelativeVector2 | The vector containing the result of the multiplication. |
API Level: 3
Declaration
C#Copypublic static RelativeVector2 operator -(RelativeVector2 arg1, RelativeVector2 arg2)
Parameters
Type | Name | Description |
---|---|---|
RelativeVector2 | arg1 | The vector to subtract. |
RelativeVector2 | arg2 | The vector to subtract. |
Returns
Type | Description |
---|---|
RelativeVector2 | The vector containing the result of the subtraction. |