validate_transform3x3#
- validate_transform3x3(
- transform: pyvista.TransformLike,
- /,
- *,
- must_be_finite: bool = True,
- name: str = 'Transform',
Validate transform-like input as a 3x3
ndarray.- Parameters:
- transform
RotationLike Transformation matrix as a 3x3 array, vtk matrix, or a SciPy
Rotationinstance.Note
Although
RotationLikeinputs are accepted, no checks are done to verify that the transformation is actually a rotation. Therefore, any 3x3 transformation is acceptable.- must_be_finitebool, default:
True Checkif all elements of the array are finite, that is, notinfinityand not Not a Number (NaN).- name
str, default: “Transform” Variable name to use in the error messages if any of the validation checks fail.
- transform
- Returns:
np.ndarrayValidated 3x3 transformation matrix.
See Also#
validate_transform4x4Similar function for 4x4 transforms.
validate_arrayGeneric array validation function.