Object
VectorF_3D
VectorF_3D | The default constructor |
VectorF_3D | A constructor that takes x,y and z coordinates as parameters. |
Clone | Returns a clone of the VectorF_3D. |
x | Sets or gets the x coordinate of the vector. |
y | Sets or gets the y coordinate of the vector. |
z | Sets or gets the z coordinate of the vector. |
Abs | Does Absolute value on the Vector. |
Angle | Calculates the angle between two vectors. |
Clamp | Trims values in the vector to values between minimum and maximum ranges. |
Distance | Returns the distance to another vector. |
Equal | Returns true if two vectors are equal. |
Length | Returns the length of the vector. |
Normalize | Normalizes the vector. |
Operator_Add | A + operator to be able to add two vectors together. |
Operator_Negate | A negate operator to be able to return the negate a vector. |
Operator_Subtract | A - operator to be able to subtract a vector from another. |
Scale | Scales the vector by a given factor. |
Set | Sets all the values of the vector in one call. |