pub struct vtkIdentityTransform(/* private fields */);Expand description
a transform that doesn’t do anything
vtkIdentityTransform is a transformation which will simply pass coordinate data unchanged. All other transform types can also do this, however, the vtkIdentityTransform does so with much greater efficiency. @sa vtkLinearTransform
Implementations§
Source§impl vtkIdentityTransform
impl vtkIdentityTransform
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkIdentityTransform wrapped inside vtkNew
Trait Implementations§
Source§impl Default for vtkIdentityTransform
impl Default for vtkIdentityTransform
Auto Trait Implementations§
impl Freeze for vtkIdentityTransform
impl RefUnwindSafe for vtkIdentityTransform
impl !Send for vtkIdentityTransform
impl !Sync for vtkIdentityTransform
impl Unpin for vtkIdentityTransform
impl UnwindSafe for vtkIdentityTransform
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