pub struct vtkMatrixToHomogeneousTransform(/* 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 vtkHomogeneousTransform 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 vtkPerspectiveTransform vtkMatrix4x4 vtkMatrixToLinearTransform
Implementations§
Source§impl vtkMatrixToHomogeneousTransform
impl vtkMatrixToHomogeneousTransform
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkMatrixToHomogeneousTransform wrapped inside vtkNew
Trait Implementations§
Auto Trait Implementations§
impl Freeze for vtkMatrixToHomogeneousTransform
impl RefUnwindSafe for vtkMatrixToHomogeneousTransform
impl !Send for vtkMatrixToHomogeneousTransform
impl !Sync for vtkMatrixToHomogeneousTransform
impl Unpin for vtkMatrixToHomogeneousTransform
impl UnwindSafe for vtkMatrixToHomogeneousTransform
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