pub struct BspLine {
pub a: f32,
pub b: f32,
pub c: f32,
}Expand description
A 2D line used as a BSP splitting plane: ax + by + c = 0.
Fields§
§a: f32§b: f32§c: f32Trait Implementations§
Auto Trait Implementations§
impl Freeze for BspLine
impl RefUnwindSafe for BspLine
impl Send for BspLine
impl Sync for BspLine
impl Unpin for BspLine
impl UnsafeUnpin for BspLine
impl UnwindSafe for BspLine
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