Struct mgf::Capsule [] [src]

pub struct Capsule {
    pub a: Point3<f32>,
    pub d: Vector3<f32>,
    pub r: f32,
}

A sphere swept along a line.

Capsules are described as all of the spheres that have a center point along their line segment.

A capsule can be constructed from a Moving<Sphere>

Fields

The starting point of the segment sweeping the sphere

When added to a produces the end point of the segment.

Radius of the sphere.

Methods

impl Capsule
[src]

[src]

Rotates the capsule about the origin

Trait Implementations

impl BoundedBy<AABB> for Capsule
[src]

[src]

impl BoundedBy<Sphere> for Capsule
[src]

[src]

impl Contacts<Moving<Component>> for Capsule
[src]

[src]

Calls the closure for each contact found. Returns true if any contact was found. Read more

[src]

Returns the last contact found, if one exists.

impl Intersects<Ray> for Capsule
[src]

[src]

Returns an Intersection if one exists.

impl Intersects<Segment> for Capsule
[src]

[src]

Returns an Intersection if one exists.

impl Contacts<Moving<Sphere>> for Capsule
[src]

[src]

Calls the closure for each contact found. Returns true if any contact was found. Read more

[src]

Returns the last contact found, if one exists.

impl Contacts<Moving<Capsule>> for Capsule
[src]

[src]

Calls the closure for each contact found. Returns true if any contact was found. Read more

[src]

Returns the last contact found, if one exists.

impl Copy for Capsule
[src]

impl Clone for Capsule
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Capsule
[src]

[src]

Formats the value using the given formatter.

impl From<Moving<Sphere>> for Capsule
[src]

[src]

Performs the conversion.

impl MinDistance<Point3<f32>> for Capsule
[src]

[src]

Returns closest point on the capsule to q

impl Add<Vector3<f32>> for Capsule
[src]

The resulting type after applying the + operator.

[src]

Performs the + operation.

impl Sub<Vector3<f32>> for Capsule
[src]

The resulting type after applying the - operator.

[src]

Performs the - operation.

impl AddAssign<Vector3<f32>> for Capsule
[src]

[src]

Performs the += operation.

impl SubAssign<Vector3<f32>> for Capsule
[src]

[src]

Performs the -= operation.

impl Shape for Capsule
[src]

[src]

Returns the center of mass of the geometry, assuming a regular density.

[src]

Sets the center of the shape to p.

impl Inertia for Capsule
[src]

[src]