pub struct vtkGeneralTransform(/* private fields */);Expand description
allows operations on any transforms
vtkGeneralTransform is like vtkTransform and vtkPerspectiveTransform, but it will work with any vtkAbstractTransform as input. It is not as efficient as the other two, however, because arbitrary transformations cannot be concatenated by matrix multiplication. Transform concatenation is simulated by passing each input point through each transform in turn. @sa vtkTransform vtkPerspectiveTransform
Implementations§
Source§impl vtkGeneralTransform
impl vtkGeneralTransform
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkGeneralTransform wrapped inside vtkNew
Trait Implementations§
Source§impl Default for vtkGeneralTransform
impl Default for vtkGeneralTransform
Auto Trait Implementations§
impl Freeze for vtkGeneralTransform
impl RefUnwindSafe for vtkGeneralTransform
impl !Send for vtkGeneralTransform
impl !Sync for vtkGeneralTransform
impl Unpin for vtkGeneralTransform
impl UnwindSafe for vtkGeneralTransform
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