[][src]Struct ncollide2d::shape::Capsule

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

SupportMap description of a capsule shape with its principal axis aligned with the y axis.

Methods

impl<N: RealField> Capsule<N>[src]

pub fn new(half_height: N, radius: N) -> Capsule<N>[src]

Creates a new capsule.

Arguments:

  • half_height - the half length of the capsule along the y axis.
  • radius - radius of the rounded part of the capsule.

pub fn half_height(&self) -> N[src]

The capsule half length along its local y axis.

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

The capsule height along its local y axis.

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

The radius of the capsule's rounded part.

pub fn segment(&self) -> Segment<N>[src]

The segment that, once dilated by self.radius yields this capsule.

pub fn contact_preprocessor(&self) -> impl ContactPreprocessor<N>[src]

The contact preprocessor to be used for contact determination with this capsule.

Trait Implementations

impl<N: RealField> HasBoundingVolume<N, AABB<N>> for Capsule<N>[src]

impl<N: RealField> HasBoundingVolume<N, BoundingSphere<N>> for Capsule<N>[src]

impl<N: RealField> PointQuery<N> for Capsule<N>[src]

fn distance_to_point(&self, m: &Isometry<N>, pt: &Point<N>, solid: bool) -> N[src]

Computes the minimal distance between a point and self transformed by m.

fn contains_point(&self, m: &Isometry<N>, pt: &Point<N>) -> bool[src]

Tests if the given point is inside of self transformed by m.

impl<N: RealField> RayCast<N> for Capsule<N>[src]

fn toi_with_ray(&self, m: &Isometry<N>, ray: &Ray<N>, solid: bool) -> Option<N>[src]

Computes the time of impact between this transform shape and a ray.

fn intersects_ray(&self, m: &Isometry<N>, ray: &Ray<N>) -> bool[src]

Tests whether a ray intersects this transformed shape.

impl<N: RealField> Shape<N> for Capsule<N>[src]

fn local_bounding_sphere(&self) -> BoundingSphere<N>[src]

The bounding sphere of self.

fn subshape_containing_feature(&self, _i: FeatureId) -> usize[src]

Returns the id of the subshape containing the specified feature. Read more

fn as_convex_polyhedron(&self) -> Option<&dyn ConvexPolyhedron<N>>[src]

The convex polyhedron representation of self if applicable.

fn as_composite_shape(&self) -> Option<&dyn CompositeShape<N>>[src]

The composite shape representation of self if applicable.

fn as_deformable_shape(&self) -> Option<&dyn DeformableShape<N>>[src]

The deformable shape representation of self if applicable.

fn as_deformable_shape_mut(&mut self) -> Option<&mut dyn DeformableShape<N>>[src]

The mutable deformable shape representation of self if applicable.

fn is_convex_polyhedron(&self) -> bool[src]

Whether self uses a convex polyhedron representation.

fn is_composite_shape(&self) -> bool[src]

Whether self uses a composite shape-based representation.

fn is_deformable_shape(&self) -> bool[src]

Whether self uses a composite shape-based representation.

impl<N: RealField> SupportMap<N> for Capsule<N>[src]

impl<N: RealField> ToPolyline<N> for Capsule<N>[src]

type DiscretizationParameter = u32

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

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

Performs copy-assignment from source. Read more

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

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

Auto Trait Implementations

impl<N> Sync for Capsule<N> where
    N: Sync

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

impl<N> Unpin for Capsule<N> where
    N: Unpin

impl<N> RefUnwindSafe for Capsule<N> where
    N: RefUnwindSafe

impl<N> UnwindSafe for Capsule<N> where
    N: UnwindSafe

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

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

impl<T> Downcast for T where
    T: Any
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self