pub struct Affine {
pub translation: Vector,
pub matrix: Matrix,
}
Expand description
An affine transformation in 2 dimensional space.
Fields§
§translation: Vector
The translation of the affine transformation.
matrix: Matrix
The matrix of the affine transformation.
Implementations§
Trait Implementations§
Source§impl MulAssign for Affine
impl MulAssign for Affine
Source§fn mul_assign(&mut self, rhs: Affine)
fn mul_assign(&mut self, rhs: Affine)
Performs the
*=
operation. Read moreimpl Copy for Affine
impl StructuralPartialEq for Affine
Auto Trait Implementations§
impl Freeze for Affine
impl RefUnwindSafe for Affine
impl Send for Affine
impl Sync for Affine
impl Unpin for Affine
impl UnwindSafe for Affine
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