[][src]Struct ncollide2d::shape::Ball

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

A Ball shape.

Methods

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

pub fn new(radius: N) -> Ball<N>[src]

Creates a new ball from its radius and center.

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

The ball radius.

Trait Implementations

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

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

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

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

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

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

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

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

impl<N: RealField> StructuralPartialEq for Ball<N>[src]

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

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

type DiscretizationParameter = u32

Auto Trait Implementations

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

impl<N> Send for Ball<N>

impl<N> Sync for Ball<N>

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

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

Blanket Implementations

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

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

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

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,