[][src]Struct implicit3d::NormalPlane

pub struct NormalPlane<S: RealField> { /* fields omitted */ }

An arbitrary (not axis aligned) plane.

Implementations

impl<S: From<f32> + RealField + Float> NormalPlane<S>[src]

pub fn from_normal_and_p(normal: Vector3<S>, p: S) -> Self[src]

Create a plane in hessian form.

pub fn from_3_points(a: &Point3<S>, b: &Point3<S>, c: &Point3<S>) -> Self[src]

Create a plane from 3 points.

Trait Implementations

impl<S: Clone + RealField> Clone for NormalPlane<S>[src]

impl<S: Debug + RealField> Debug for NormalPlane<S>[src]

impl<S: Float + From<f32> + RealField> Object<S> for NormalPlane<S>[src]

impl<S: PartialEq + RealField> PartialEq<NormalPlane<S>> for NormalPlane<S>[src]

impl<S: RealField> StructuralPartialEq for NormalPlane<S>[src]

Auto Trait Implementations

impl<S> RefUnwindSafe for NormalPlane<S> where
    S: RefUnwindSafe + Scalar

impl<S> Send for NormalPlane<S> where
    S: Scalar

impl<S> Sync for NormalPlane<S> where
    S: Scalar

impl<S> Unpin for NormalPlane<S> where
    S: Scalar + Unpin

impl<S> UnwindSafe for NormalPlane<S> where
    S: Scalar + UnwindSafe

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<S, T> ObjectClone<S> for T where
    S: RealField + From<f32> + Float,
    T: 'static + Object<S> + Clone
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,