SIMD3
-
-
-
Returns the pointwise minimal Vector where each component is the minimal scalar value at each index for both vectors.
-
Returns the pointwise maximal Vector where each component is the maximal scalar value at each index for both vectors.
-
Compares two vectors and returns
true
if all components oflhs
are greater thanrhs
.Performs
lhs.x > rhs.x && lhs.y > rhs.y && lhs.z > rhs.z
-
Compares two vectors and returns
true
if all components oflhs
are greater than or equal torhs
.Performs
lhs.x >= rhs.x && lhs.y >= rhs.y && lhs.z >= rhs.z
-
Compares two vectors and returns
true
if all components oflhs
are less thanrhs
.Performs
lhs.x < rhs.x && lhs.y < rhs.y && lhs.z < rhs.z
-
Compares two vectors and returns
true
if all components oflhs
are less than or equal torhs
.Performs
lhs.x <= rhs.x && lhs.y <= rhs.y && lhs.z <= rhs.z
-
-
-
-
-
-
Returns the Euclidean norm (square root of the squared length) of this
Vector3Type
-
Returns the distance between this
Vector3Type
and anotherVector3Type
-
-
-
-
-
-
-
-
-
-
The XY-plane angle of this vector
-
The elevation angle of this vector, or the angle between the XY plane and the vector.
Returns zero, if the vector’s length is zero.