Class Vector3

Definition

Namespace:
Tizen.NUI
Assembly:
Tizen.NUI.dll

A three-dimensional vector.

C#
Copy
public class Vector3 : Disposable, IDisposable, ICloneable
Inheritance
object
Vector3
Implements
System.IDisposable
System.ICloneable

Constructors

View Source

Vector3()

The default constructor of Vector3 class.

Declaration
C#
Copy
public Vector3()
View Source

Vector3(float, float, float)

The default constructor initializes the vector to 0.

Declaration
C#
Copy
public Vector3(float x, float y, float z)
Parameters
Type Name Description
float x

The x (or width) component.

float y

The y (or height) component.

float z

The z (or depth) component.

View Source

Vector3(float[])

Conversion constructor from an array of three floats.

Declaration
C#
Copy
public Vector3(float[] array)
Parameters
Type Name Description
float[] array

An array of xyz.

View Source

Vector3(Vector2)

The constructor.

Declaration
C#
Copy
public Vector3(Vector2 vec2)
Parameters
Type Name Description
Vector2 vec2

Vector2 to create this vector from.

View Source

Vector3(Vector4)

The constructor.

Declaration
C#
Copy
public Vector3(Vector4 vec4)
Parameters
Type Name Description
Vector4 vec4

Vector4 to create this vector from.

Properties

View Source

B

The blue component.

Declaration
C#
Copy
public float B { get; set; }
Property Value
Type Description
float
Remarks

The setter is deprecated in API8 and will be removed in API10. Use new Vector3(...) constructor.

View Source

Depth

The depth component.

Declaration
C#
Copy
public float Depth { get; set; }
Property Value
Type Description
float
Remarks

The setter is deprecated in API8 and will be removed in API10. Use new Vector3(...) constructor.

View Source

G

The green component.

Declaration
C#
Copy
public float G { get; set; }
Property Value
Type Description
float
Remarks

The setter is deprecated in API8 and will be removed in API10. Use new Vector3(...) constructor.

View Source

Height

The height component.

Declaration
C#
Copy
public float Height { get; set; }
Property Value
Type Description
float
Remarks

The setter is deprecated in API8 and will be removed in API10. Use new Vector3(...) constructor.

View Source

this[uint]

An array subscript operator overload.

Declaration
C#
Copy
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.

View Source

NegativeXAxis

The vector representing the negative x-axis.

Declaration
C#
Copy
public static Vector3 NegativeXAxis { get; }
Property Value
Type Description
Vector3
View Source

NegativeYAxis

Th vector representing the negative y-axis.

Declaration
C#
Copy
public static Vector3 NegativeYAxis { get; }
Property Value
Type Description
Vector3
View Source

NegativeZAxis

The vector representing the negative z-axis.

Declaration
C#
Copy
public static Vector3 NegativeZAxis { get; }
Property Value
Type Description
Vector3
View Source

One

Returns a Vector2 instance where both the x and y components are set to 1.0f. Actual value is (1.0f,1.0f,1.0f).

Declaration
C#
Copy
public static Vector3 One { get; }
Property Value
Type Description
Vector3
View Source

R

The red component.

Declaration
C#
Copy
public float R { get; set; }
Property Value
Type Description
float
Remarks

The setter is deprecated in API8 and will be removed in API10. Use new Vector3(...) constructor.

View Source

Width

The width component.

Declaration
C#
Copy
public float Width { get; set; }
Property Value
Type Description
float
Remarks

The setter is deprecated in API8 and will be removed in API10. Use new Vector3(...) constructor.

View Source

X

The x component.

Declaration
C#
Copy
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 Vector3(...) constructor.

View Source

XAxis

The vector representing the x-axis.

Declaration
C#
Copy
public static Vector3 XAxis { get; }
Property Value
Type Description
Vector3
View Source

Y

The y component.

Declaration
C#
Copy
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 Vector3(...) constructor.

View Source

YAxis

The vector representing the y-axis.

Declaration
C#
Copy
public static Vector3 YAxis { get; }
Property Value
Type Description
Vector3
View Source

Z

The z component.

Declaration
C#
Copy
public float Z { get; set; }
Property Value
Type Description
float
Remarks

The setter is deprecated in API8 and will be removed in API10. Use new Vector3(...) constructor.

View Source

ZAxis

The vector representing the z-axis.

Declaration
C#
Copy
public static Vector3 ZAxis { get; }
Property Value
Type Description
Vector3
View Source

Zero

A Vector2 object representing the zero vector. Actual value is (0.0f, 0.0f, 0.0f).

Declaration
C#
Copy
public static Vector3 Zero { get; }
Property Value
Type Description
Vector3

Methods

View Source

Clamp(Vector3, Vector3)

Clamps the vector between minimum and maximum vectors.

Declaration
C#
Copy
public void Clamp(Vector3 min, Vector3 max)
Parameters
Type Name Description
Vector3 min

The minimum vector.

Vector3 max

The maximum vector.

View Source

Equals(Object)

Determines whether the specified object is equal to the current object.

Declaration
C#
Copy
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.

View Source

GetHashCode()

Gets the hash code of this Vector3.

Declaration
C#
Copy
public override int GetHashCode()
Returns
Type Description
int

The Hash Code.

Overrides
object.GetHashCode()
View Source

GetVectorXY()

Returns the x and y components (or width and height, or r and g) as a Vector2.

Declaration
C#
Copy
public Vector2 GetVectorXY()
Returns
Type Description
Vector2

The partial vector contents as Vector2 (x,y).

View Source

GetVectorYZ()

Returns the y and z components (or height and depth, or g and b) as a Vector2.

Declaration
C#
Copy
public Vector2 GetVectorYZ()
Returns
Type Description
Vector2

The partial vector contents as Vector2 (y,z).

View Source

Length()

Returns the length of the vector.

Declaration
C#
Copy
public float Length()
Returns
Type Description
float

The length of the vector.

View Source

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#
Copy
public float LengthSquared()
Returns
Type Description
float

The length of the vector squared.

View Source

Normalize()

Sets the vector to be unit length, whilst maintaining its direction.

Declaration
C#
Copy
public void Normalize()

Operators

View Source

operator +(Vector3, Vector3)

The addition operator.

Declaration
C#
Copy
public 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.

View Source

operator /(Vector3, float)

The division operator.

Declaration
C#
Copy
public static Vector3 operator /(Vector3 arg1, float arg2)
Parameters
Type Name Description
Vector3 arg1

The first value.

float arg2

The float value to scale the vector by.

Returns
Type Description
Vector3

The vector containing the result of the scaling.

View Source

operator /(Vector3, Vector3)

The division operator.

Declaration
C#
Copy
public 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.

View Source

operator *(Vector3, float)

The multiplication operator.

Declaration
C#
Copy
public static Vector3 operator *(Vector3 arg1, float arg2)
Parameters
Type Name Description
Vector3 arg1

The first value.

float arg2

The float value to scale the vector.

Returns
Type Description
Vector3

The vector containing the result of the scaling.

View Source

operator *(Vector3, Vector3)

The multiplication operator.

Declaration
C#
Copy
public 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.

View Source

operator -(Vector3, Vector3)

The subtraction operator.

Declaration
C#
Copy
public 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.

View Source

operator -(Vector3)

The unary negation operator.

Declaration
C#
Copy
public static Vector3 operator -(Vector3 arg1)
Parameters
Type Name Description
Vector3 arg1

The target value.

Returns
Type Description
Vector3

The vector containg the negation.

Implements

System.IDisposable
System.ICloneable