[][src]Struct collision::primitive::Capsule

pub struct Capsule<S> { /* fields omitted */ }

Capsule primitive Capsule body is aligned with the Y axis, with local origin in the center of the capsule.

Methods

impl<S> Capsule<S> where
    S: BaseFloat
[src]

pub fn new(half_height: S, radius: S) -> Self[src]

Create a new Capsule

pub fn radius(&self) -> S[src]

Get radius

pub fn height(&self) -> S[src]

Get height

Trait Implementations

impl<S> Continuous<Ray<S, Point3<S>, Vector3<S>>> for Capsule<S> where
    S: BaseFloat
[src]

type Result = Point3<S>

Result returned by the intersection test

impl<S> Discrete<Ray<S, Point3<S>, Vector3<S>>> for Capsule<S> where
    S: BaseFloat
[src]

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

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

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

type Point = Point3<S>

Point type

impl<S: PartialEq> PartialEq<Capsule<S>> for Capsule<S>[src]

impl<S: Clone> Clone for Capsule<S>[src]

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

Performs copy-assignment from source. Read more

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

impl<S: Debug> Debug for Capsule<S>[src]

Auto Trait Implementations

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

impl<S> Sync for Capsule<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
    U: Into<T>, 
[src]

type Error = Infallible

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

The type returned in the event of a conversion error.