#[repr(C)]pub struct b3Plane {
pub normal: b3Vec3,
pub offset: f32,
}Expand description
A plane. separation = dot(normal, point) - offset
Fields§
§normal: b3Vec3§offset: f32Trait Implementations§
Auto Trait Implementations§
impl Freeze for b3Plane
impl RefUnwindSafe for b3Plane
impl Send for b3Plane
impl Sync for b3Plane
impl Unpin for b3Plane
impl UnsafeUnpin for b3Plane
impl UnwindSafe for b3Plane
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