pub struct Frame3 {
pub origin: Point3,
pub x: Vec3,
pub y: Vec3,
pub z: Vec3,
}Expand description
Right-handed 3D local frame. Dirty imported frames remain representable.
Fields§
§origin: Point3Local origin.
x: Vec3Local x axis.
y: Vec3Local y axis.
z: Vec3Local z axis.
Trait Implementations§
impl Copy for Frame3
impl StructuralPartialEq for Frame3
Auto Trait Implementations§
impl Freeze for Frame3
impl RefUnwindSafe for Frame3
impl Send for Frame3
impl Sync for Frame3
impl Unpin for Frame3
impl UnsafeUnpin for Frame3
impl UnwindSafe for Frame3
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