Vector3dAreOrthonormal Method

Test whether three vectors describe an orthogonal, unit axis system. All vectors must be mutually perpendicular and have unit length for this to be the case.

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Syntax
public static bool AreOrthonormal(
	Vector3d x,
	Vector3d y,
	Vector3d z
)
Public Shared Function AreOrthonormal ( 
	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: Boolean
True if all vectors are non-zero and mutually perpendicular.
Version Information

Rhino for Windows

Supported in: 6.8
See Also