Vector3dAreRighthanded Method |
Test whether three vectors describe a right-handed, orthogonal, unit axis system.
The vectors must be orthonormal and follow the right-hand ordering; index-finger=x,
middle-finger=y, thumb=z.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 6.7
Syntax public static bool AreRighthanded(
Vector3d x,
Vector3d y,
Vector3d z
)
Public Shared Function AreRighthanded (
x As Vector3d,
y As Vector3d,
z As Vector3d
) As Boolean
Parameters
- x
- Type: Rhino.GeometryVector3d
X axis vector. - y
- Type: Rhino.GeometryVector3d
Y axis vector. - z
- Type: Rhino.GeometryVector3d
Z axis vector.
Return Value
Type:
BooleanTrue if all vectors are non-zero and mutually perpendicular.
See Also