[][src]Struct ncollide2d::shape::Cuboid

pub struct Cuboid<N: RealField> { /* fields omitted */ }

Shape of a box.

Methods

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

pub fn new(half_extents: Vector<N>) -> Cuboid<N>[src]

Creates a new box from its half-extents. Half-extents are the box half-width along each axis. Each half-extent must be positive.

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

pub fn half_extents(&self) -> &Vector<N>[src]

The half-extents of this box. Half-extents are the box half-width along each axis.

pub fn tangent_cone_contains_dir(
    &self,
    feature: FeatureId,
    m: &Isometry<N>,
    dir: &Unit<Vector<N>>
) -> bool
[src]

Checks that the given direction in world-space is on the tangent cone of the given feature.

Trait Implementations

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

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

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

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

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

Tests whether a ray intersects this transformed shape.

impl<N: RealField> ConvexPolyhedron<N> for Cuboid<N>[src]

impl<N: RealField> Shape<N> for Cuboid<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_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_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 Cuboid<N>[src]

fn support_point_toward(
    &self,
    transform: &Isometry<N>,
    dir: &Unit<Vector<N>>
) -> Point<N>
[src]

Same as self.support_point except that dir is normalized.

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

type DiscretizationParameter = ()

impl<N: Clone + RealField> Clone for Cuboid<N>[src]

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

Performs copy-assignment from source. Read more

impl<N: PartialEq + RealField> PartialEq<Cuboid<N>> for Cuboid<N>[src]

impl<N: Debug + RealField> Debug for Cuboid<N>[src]

Auto Trait Implementations

impl<N> Sync for Cuboid<N> where
    N: Scalar

impl<N> Send for Cuboid<N> where
    N: Scalar

impl<N> Unpin for Cuboid<N> where
    N: Scalar + Unpin

impl<N> RefUnwindSafe for Cuboid<N> where
    N: RefUnwindSafe + Scalar

impl<N> UnwindSafe for Cuboid<N> where
    N: Scalar + 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