Struct ncollide_geometry::shape::Capsule [] [src]

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

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

Methods

impl<N: Real> 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.

The capsule half length along the y axis.

The radius of the capsule's rounded part.

Trait Implementations

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

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

Formats the value using the given formatter.

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Serialize a value using an Encoder.

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

Deserialize a value using a Decoder.

impl<P: Point, M: Isometry<P>> SupportMap<P, M> for Capsule<P::Real>
[src]

Evaluates the support function of the object. A support function is a function associating a vector to the shape point which maximizes their dot product. This does not include the margin of the object. Margins are shape-dependent. Use support_point to sample the complete shape. Read more

impl<P: Point, M: Isometry<P>> HasBoundingVolume<M, AABB<P>> for Capsule<P::Real>
[src]

The bounding volume of self transformed by m.

impl<P: Point, M: Isometry<P>> HasBoundingVolume<M, BoundingSphere<P>> for Capsule<P::Real>
[src]

The bounding volume of self transformed by m.

impl<P, M> RayCast<P, M> for Capsule<P::Real> where
    P: Point,
    M: Isometry<P>, 
[src]

Computes the time of impact, and normal between this transformed shape and a ray.

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

Computes time of impact, normal, and texture coordinates (uv) between this transformed shape and a ray. Read more

Tests whether a ray intersects this transformed shape.

impl<P: Point, M: Isometry<P>> PointQuery<P, M> for Capsule<P::Real>
[src]

Projects a point on self transformed by m.

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

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