pub struct vtkMatrix3x3(/* private fields */);Expand description
represent and manipulate 3x3 transformation matrices
vtkMatrix3x3 is a class to represent and manipulate 3x3 matrices. Specifically, it is designed to work on 3x3 transformation matrices found in 2D rendering using homogeneous coordinates [x y w].
@sa vtkTransform2D
Implementations§
Source§impl vtkMatrix3x3
impl vtkMatrix3x3
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkMatrix3x3 wrapped inside vtkNew
Trait Implementations§
Source§impl Default for vtkMatrix3x3
impl Default for vtkMatrix3x3
Auto Trait Implementations§
impl Freeze for vtkMatrix3x3
impl RefUnwindSafe for vtkMatrix3x3
impl !Send for vtkMatrix3x3
impl !Sync for vtkMatrix3x3
impl Unpin for vtkMatrix3x3
impl UnwindSafe for vtkMatrix3x3
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