pub struct PlaneResult {
pub plane: Plane,
pub point: Vec3,
}Expand description
The plane between a character mover and a shape. (b3PlaneResult)
Fields§
§plane: PlaneOutward pointing plane.
point: Vec3Closest point on the shape. May not be unique.
Trait Implementations§
Source§impl Clone for PlaneResult
impl Clone for PlaneResult
Source§fn clone(&self) -> PlaneResult
fn clone(&self) -> PlaneResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PlaneResult
Source§impl Debug for PlaneResult
impl Debug for PlaneResult
Source§impl Default for PlaneResult
impl Default for PlaneResult
Source§impl PartialEq for PlaneResult
impl PartialEq for PlaneResult
impl StructuralPartialEq for PlaneResult
Auto Trait Implementations§
impl Freeze for PlaneResult
impl RefUnwindSafe for PlaneResult
impl Send for PlaneResult
impl Sync for PlaneResult
impl Unpin for PlaneResult
impl UnsafeUnpin for PlaneResult
impl UnwindSafe for PlaneResult
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