pub struct vtkMatrixToLinearTransform(/* private fields */);Expand description
convert a matrix to a transform
This is a very simple class which allows a vtkMatrix4x4 to be used in place of a vtkLinearTransform or vtkAbstractTransform. For example, if you use it as a proxy between a matrix and vtkTransformPolyDataFilter then any modifications to the matrix will automatically be reflected in the output of the filter. @sa vtkTransform vtkMatrix4x4 vtkMatrixToHomogeneousTransform
Implementations§
Source§impl vtkMatrixToLinearTransform
impl vtkMatrixToLinearTransform
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkMatrixToLinearTransform wrapped inside vtkNew
Trait Implementations§
Source§impl Default for vtkMatrixToLinearTransform
impl Default for vtkMatrixToLinearTransform
Auto Trait Implementations§
impl Freeze for vtkMatrixToLinearTransform
impl RefUnwindSafe for vtkMatrixToLinearTransform
impl !Send for vtkMatrixToLinearTransform
impl !Sync for vtkMatrixToLinearTransform
impl Unpin for vtkMatrixToLinearTransform
impl UnwindSafe for vtkMatrixToLinearTransform
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more