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
trueif all components oflhsare greater thanrhs.Performs
lhs.x > rhs.x && lhs.y > rhs.y && lhs.z > rhs.z -
Compares two vectors and returns
trueif all components oflhsare greater than or equal torhs.Performs
lhs.x >= rhs.x && lhs.y >= rhs.y && lhs.z >= rhs.z -
Compares two vectors and returns
trueif all components oflhsare less thanrhs.Performs
lhs.x < rhs.x && lhs.y < rhs.y && lhs.z < rhs.z -
Compares two vectors and returns
trueif all components oflhsare 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
Vector3Typeand 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.