pub struct Proj2x3 {
pub row0: Vec3,
pub row1: Vec3,
}Expand description
A 2×3 projection matrix: maps Vec3 → Vec2 via dot products with two rows.
Fields§
§row0: Vec3§row1: Vec3Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Proj2x3
impl RefUnwindSafe for Proj2x3
impl Send for Proj2x3
impl Sync for Proj2x3
impl Unpin for Proj2x3
impl UnsafeUnpin for Proj2x3
impl UnwindSafe for Proj2x3
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