is_orthonormal_triplet#
- static GeometryOperators.is_orthonormal_triplet(x: list, y: list, z: list, tol: float = None) bool#
Check if three vectors are orthonormal.
- Parameters:
- x
Listortuple List of
(x1, x2, x3)coordinates for the first vector.- y
Listortuple List of
(y1, y2, y3)coordinates for the second vector.- z
Listortuple List of
(z1, z2, z3)coordinates for the third vector.- tol
float,optional Linear tolerance. The default value is
None. If not specified, the value is set toMathUtils.EPSILON.
- x
- Returns:
- bool
Trueif the three vectors are orthonormal,Falseotherwise.