Struct rhusics::collide3d::Cuboid [] [src]

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

Cuboid primitive.

Have a cached set of corner points to speed up computation.

Methods

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

[src]

Create a new rectangle primitive from component dimensions

[src]

Create a new rectangle primitive from a vector of component dimensions

Trait Implementations

impl<S> Clone for Cuboid<S> where
    S: Clone
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

Point type

[src]

Get the support point on the shape in a given direction. Read more

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

Bounding box type

[src]

Get the bounding box of the primitive in local space coordinates.

impl<S> PartialEq<Cuboid<S>> for Cuboid<S> where
    S: PartialEq<S>, 
[src]

[src]

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

[src]

This method tests for !=.

impl<S> Debug for Cuboid<S> where
    S: Debug
[src]

[src]

Formats the value using the given formatter.

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

[src]

Intersection test

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

[src]