pyvista.Transform.apply_to_points#
- Transform.apply_to_points( ) NumpyArray[float][source]#
Apply the current transformation
matrixto a point or points.This is equivalent to
apply(points, 'points'). Seeapply()for details and examples.- Parameters:
- points
VectorLike[float] |MatrixLike[float] Single point or
Nx3points array to apply the transformation to.- inversebool, default:
False Apply the transformation using the
inverse_matrixinstead of thematrix.- copybool, default:
True Return a copy of the input with the transformation applied. Set this to
Falseto transform the input directly and return it. Only applies to NumPy arrays. A copy is always returned for tuple and list inputs or point arrays with integers.
- points
- Returns:
np.ndarrayTransformed points.
See also
applyApply this transformation to any input.
apply_to_vectorsApply this transformation to vectors.
apply_to_datasetApply this transformation to a dataset.
apply_to_actorApply this transformation to an actor.