Class RelativeVector2
Definition
- Assembly:
- Tizen.NUI.dll
RelativeVector2 is a two-dimensional vector. Both values (x and y) should be between [0, 1].
public class RelativeVector2 : Disposable, IDisposable
- Inheritance
- Implements
-
System.IDisposable
Constructors
View SourceRelativeVector2()
The constructor.
Declaration
public RelativeVector2()
RelativeVector2(float, float)
The constructor.
Declaration
public RelativeVector2(float x, float y)
Parameters
Type | Name | Description |
---|---|---|
float | x | The x component. |
float | y | The y component. |
RelativeVector2(RelativeVector3)
The constructor.
Declaration
public RelativeVector2(RelativeVector3 relativeVector3)
Parameters
Type | Name | Description |
---|---|---|
RelativeVector3 | relativeVector3 | The RelativeVector3 to create this vector from. |
RelativeVector2(RelativeVector4)
The constructor.
Declaration
public RelativeVector2(RelativeVector4 relativeVector4)
Parameters
Type | Name | Description |
---|---|---|
RelativeVector4 | relativeVector4 | The RelativeVector4 to create this vector from. |
Properties
View Sourcethis[uint]
The const array subscript operator overload. Should be 0, 1.
Declaration
public float this[uint index] { get; }
Parameters
Type | Name | Description |
---|---|---|
uint | index | The subscript index. |
Property Value
Type | Description |
---|---|
float | The float at the given index. |
X
The x component.
Declaration
public float X { get; set; }
Property Value
Type | Description |
---|---|
float |
Remarks
The setter is deprecated in API8 and will be removed in API10. Use new RelativeVector2(...) constructor.
Y
The y component.
Declaration
public float Y { get; set; }
Property Value
Type | Description |
---|---|
float |
Remarks
The setter is deprecated in API8 and will be removed in API10. Use new RelativeVector2(...) constructor.
Methods
View SourceEquals(Object)
Determines whether the specified object is equal to the current object.
Declaration
public override bool Equals(Object obj)
Parameters
Type | Name | Description |
---|---|---|
Tizen.System.Object | obj | The object to compare with the current object. |
Returns
Type | Description |
---|---|
bool | true if the specified object is equal to the current object; otherwise, false. |
EqualTo(RelativeVector2)
Compares if the rhs is equal to.
Declaration
public bool EqualTo(RelativeVector2 rhs)
Parameters
Type | Name | Description |
---|---|---|
RelativeVector2 | rhs | The vector to compare. |
Returns
Type | Description |
---|---|
bool | Returns true if the two vectors are equal, otherwise false. |
GetHashCode()
Gets the hash code of this RelativeVector2.
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
int | The Hash Code. |
Overrides
NotEqualTo(RelativeVector2)
Compares if the rhs is not equal to.
Declaration
public bool NotEqualTo(RelativeVector2 rhs)
Parameters
Type | Name | Description |
---|---|---|
RelativeVector2 | rhs | The vector to compare. |
Returns
Type | Description |
---|---|
bool | Returns true if the two vectors are not equal, otherwise false. |
Operators
View Sourceoperator +(RelativeVector2, RelativeVector2)
The addition operator.
Declaration
public 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. |
operator /(RelativeVector2, float)
The division operator.
Declaration
public static RelativeVector2 operator /(RelativeVector2 arg1, float arg2)
Parameters
Type | Name | Description |
---|---|---|
RelativeVector2 | arg1 | The vector to divide. |
float | arg2 | The float value to scale the vector by. |
Returns
Type | Description |
---|---|
RelativeVector2 | The vector containing the result of the scaling. |
operator /(RelativeVector2, RelativeVector2)
The division operator.
Declaration
public 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. |
implicit operator Vector2(RelativeVector2)
Declaration
public static implicit operator Vector2(RelativeVector2 relativeVector2)
Parameters
Type | Name | Description |
---|---|---|
RelativeVector2 | relativeVector2 |
Returns
Type | Description |
---|---|
Vector2 |
implicit operator RelativeVector2(Vector2)
Declaration
public static implicit operator RelativeVector2(Vector2 vec)
Parameters
Type | Name | Description |
---|---|---|
Vector2 | vec |
Returns
Type | Description |
---|---|
RelativeVector2 |
operator *(RelativeVector2, float)
The multiplication operator.
Declaration
public static RelativeVector2 operator *(RelativeVector2 arg1, float arg2)
Parameters
Type | Name | Description |
---|---|---|
RelativeVector2 | arg1 | The vector to multiply. |
float | arg2 | The float value to scale the vector. |
Returns
Type | Description |
---|---|
RelativeVector2 | The vector containing the result of the scaling. |
operator *(RelativeVector2, RelativeVector2)
The multiplication operator.
Declaration
public 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. |
operator -(RelativeVector2, RelativeVector2)
The subtraction operator.
Declaration
public 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. |