pub struct Frame2 {
pub origin: Point2,
pub x: Vec2,
pub y: Vec2,
}Expand description
Right-handed 2D local frame. Algorithms validate orthonormality explicitly.
Fields§
§origin: Point2Local origin.
x: Vec2Local x axis.
y: Vec2Local y axis.
Trait Implementations§
impl Copy for Frame2
impl StructuralPartialEq for Frame2
Auto Trait Implementations§
impl Freeze for Frame2
impl RefUnwindSafe for Frame2
impl Send for Frame2
impl Sync for Frame2
impl Unpin for Frame2
impl UnsafeUnpin for Frame2
impl UnwindSafe for Frame2
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