Method | Description | |
---|---|---|
Cross ( Vector3 other ) : Vector3 |
Returns the cross product of this vector with the given one.
|
|
Dot ( Vector3 vector ) : float |
Calculates the dot product of the two vectors.
|
|
Normalized ( ) : Vector3 |
Returns a normalized representation of the vector.
|
|
ToString ( ) : string |
Returns the fully qualified type name of this instance.
|
|
Vector3 ( float values ) : System |
Initializes a new instance of the Vector3 struct.
|
|
Vector3 ( float x, float y, float z ) : System |
Initializes a new instance of the Vector3 struct.
|
|
operator ( ) : Vector3 |
Implements the multiplication operator for a vector and a scalar.
|
|
this ( int index ) : float |
Gets the value at the specified axis.
|
public Cross ( Vector3 other ) : Vector3 | ||
other | Vector3 | The other vector. |
return | Vector3 |
public Vector3 ( float values ) : System | ||
values | float | The values. |
return | System |
public Vector3 ( float x, float y, float z ) : System | ||
x | float | The value for the X-axis. |
y | float | The value for the Y-axis. |
z | float | The value for the Z-axis. |
return | System |
public this ( int index ) : float | ||
index | int | 0 -> x-axis; 1 -> y-axis; 2 -> z-axis. |
return | float |