[][src]Struct mgf::Plane

pub struct Plane {
    pub n: Vector3<f32>,
    pub d: f32,
}

A normal vector and a distance.

Fields

n: Vector3<f32>

The normal vector of the plane.

d: f32

The plane's distance from the origin.

Methods

impl Plane[src]

pub fn new(n: Vector3<f32>, d: f32) -> Self[src]

Create a new plane.

Trait Implementations

impl Contains<Point3<f32>> for Plane[src]

impl<P: Particle> Intersects<Plane> for P[src]

impl Contacts<Moving<Component>> for Plane[src]

fn last_contact(&self, rhs: &RHS) -> Option<Contact>[src]

Returns the last contact found, if one exists.

impl Contacts<Moving<Sphere>> for Plane[src]

fn last_contact(&self, rhs: &RHS) -> Option<Contact>[src]

Returns the last contact found, if one exists.

impl Contacts<Moving<Capsule>> for Plane[src]

fn last_contact(&self, rhs: &RHS) -> Option<Contact>[src]

Returns the last contact found, if one exists.

impl Contacts<Plane> for Moving<Sphere>[src]

fn last_contact(&self, rhs: &RHS) -> Option<Contact>[src]

Returns the last contact found, if one exists.

impl Contacts<Plane> for Moving<Capsule>[src]

fn last_contact(&self, rhs: &RHS) -> Option<Contact>[src]

Returns the last contact found, if one exists.

impl Shape for Plane[src]

fn center(&self) -> Point3<f32>[src]

Conceptually, it's hard to consider any point of a plane the "center".

fn set_pos(&mut self, p: Point3<f32>)[src]

Sets the center of the shape to p.

impl Clone for Plane[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl From<(Point3<f32>, Point3<f32>, Point3<f32>)> for Plane[src]

impl From<Triangle> for Plane[src]

impl Into<Plane> for Rectangle[src]

impl Copy for Plane[src]

impl Debug for Plane[src]

impl Add<Vector3<f32>> for Plane[src]

type Output = Self

The resulting type after applying the + operator.

impl Sub<Vector3<f32>> for Plane[src]

type Output = Self

The resulting type after applying the - operator.

impl AddAssign<Vector3<f32>> for Plane[src]

impl SubAssign<Vector3<f32>> for Plane[src]

Auto Trait Implementations

impl Send for Plane

impl Sync for Plane

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.