[][src]Enum collision::primitive::Primitive3

pub enum Primitive3<S> where
    S: BaseFloat
{ Particle(Particle3<S>), Quad(Quad<S>), Sphere(Sphere<S>), Cuboid(Cuboid<S>), Cube(Cube<S>), Cylinder(Cylinder<S>), Capsule(Capsule<S>), ConvexPolyhedron(ConvexPolyhedron<S>), }

Wrapper enum for 3D primitives, that also implements the Primitive trait, making it easier to use many different primitives in algorithms.

Variants

Particle(Particle3<S>)

Particle

Quad(Quad<S>)

Rectangular plane

Sphere(Sphere<S>)

Sphere

Cuboid(Cuboid<S>)

Cuboid

Cube(Cube<S>)

Cube

Cylinder(Cylinder<S>)

Cylinder

Capsule(Capsule<S>)

Capsule

ConvexPolyhedron(ConvexPolyhedron<S>)

Convex polyhedron with any number of vertices/faces

Trait Implementations

impl<S> ComputeBound<Aabb3<S>> for Primitive3<S> where
    S: BaseFloat
[src]

impl<S> ComputeBound<Sphere<S>> for Primitive3<S> where
    S: BaseFloat
[src]

impl<S> Primitive for Primitive3<S> where
    S: BaseFloat
[src]

type Point = Point3<S>

Point type

impl<S> DiscreteTransformed<Ray<S, Point3<S>, Vector3<S>>> for Primitive3<S> where
    S: BaseFloat
[src]

type Point = Point3<S>

Point type for transformation of self

impl<S> ContinuousTransformed<Ray<S, Point3<S>, Vector3<S>>> for Primitive3<S> where
    S: BaseFloat
[src]

type Point = Point3<S>

Point type for transformation of self

type Result = Point3<S>

Result of intersection test

impl<S: Clone> Clone for Primitive3<S> where
    S: BaseFloat
[src]

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

Performs copy-assignment from source. Read more

impl<S> From<Particle<Point3<S>>> for Primitive3<S> where
    S: BaseFloat
[src]

impl<S> From<Quad<S>> for Primitive3<S> where
    S: BaseFloat
[src]

impl<S> From<Sphere<S>> for Primitive3<S> where
    S: BaseFloat
[src]

impl<S> From<Cube<S>> for Primitive3<S> where
    S: BaseFloat
[src]

impl<S> From<Cuboid<S>> for Primitive3<S> where
    S: BaseFloat
[src]

impl<S> From<Cylinder<S>> for Primitive3<S> where
    S: BaseFloat
[src]

impl<S> From<Capsule<S>> for Primitive3<S> where
    S: BaseFloat
[src]

impl<S> From<ConvexPolyhedron<S>> for Primitive3<S> where
    S: BaseFloat
[src]

impl<S: PartialEq> PartialEq<Primitive3<S>> for Primitive3<S> where
    S: BaseFloat
[src]

impl<S: Debug> Debug for Primitive3<S> where
    S: BaseFloat
[src]

Auto Trait Implementations

impl<S> Send for Primitive3<S> where
    S: Send

impl<S> Sync for Primitive3<S> where
    S: Sync

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
    T: From<U>, 
[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, 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.

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

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