pub struct ParallelPlane {
pub norm: [f32; 3],
pub min: f32,
pub max: f32,
pub pos_one: [f32; 3],
pub pos_two: [f32; 3],
}Fields§
§norm: [f32; 3]§min: f32§max: f32§pos_one: [f32; 3]§pos_two: [f32; 3]Trait Implementations§
Source§impl Clone for ParallelPlane
impl Clone for ParallelPlane
Source§fn clone(&self) -> ParallelPlane
fn clone(&self) -> ParallelPlane
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ParallelPlane
impl RefUnwindSafe for ParallelPlane
impl Send for ParallelPlane
impl Sync for ParallelPlane
impl Unpin for ParallelPlane
impl UnsafeUnpin for ParallelPlane
impl UnwindSafe for ParallelPlane
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