[][src]Enum oxygengine_physics_2d::prelude::ncollide2d::bounding_volume::CircularCone

pub enum CircularCone<N> where
    N: RealField
{ Full, Empty, Spread { axis: Unit<Matrix<N, U2, U1, <DefaultAllocator as Allocator<N, U2, U1>>::Buffer>>, angle: N, }, }

A cone with a circular basis and its apex at the origin.

A circular cone is a set of half-lines emanating from its apex and forming an angle of at most angle with its axis. It is usually used to bound a set of directions like normals and tangents. It is convex and have a circular basis.

Variants

Full

A cone which is the whole space.

Empty

An empty cone containing only the zero vector.

Spread

All the vectors emanating from the origin, with a maximal angle wrt the given axis.

Fields of Spread

axis: Unit<Matrix<N, U2, U1, <DefaultAllocator as Allocator<N, U2, U1>>::Buffer>>

The cone axis.

angle: N

Half of the cone apex angle, i.e., the largest angle possible between the axis and a vector contained by this cone.

Implementations

impl<N> CircularCone<N> where
    N: RealField
[src]

pub fn from_vectors(
    dirs: &[Unit<Matrix<N, U2, U1, <DefaultAllocator as Allocator<N, U2, U1>>::Buffer>>]
) -> CircularCone<N>
[src]

Creates a circular cone from a set of vectors.

pub fn is_empty(&self) -> bool[src]

Returns true if this cone is empty.

pub fn push(
    &mut self,
    dir: Unit<Matrix<N, U2, U1, <DefaultAllocator as Allocator<N, U2, U1>>::Buffer>>
)
[src]

Enlarge this cone so it contains dir too.

pub fn intersects(&self, other: &CircularCone<N>) -> bool[src]

Returns true if this cone intersects other.

pub fn double_cones_intersect(&self, other: &CircularCone<N>) -> bool[src]

Tests if this circular cone, extended to be a double cone, intersects the other circular cone, also seen as a double cone.

pub fn contains(&self, other: &CircularCone<N>) -> bool[src]

Returns true if this cone contains other.

pub fn merge(&mut self, other: &CircularCone<N>)[src]

Merges this cone with other in-place.

pub fn merged(&self, other: &CircularCone<N>) -> CircularCone<N>[src]

Merges this cone with other.

Trait Implementations

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

impl<N> Copy for CircularCone<N> where
    N: Copy + RealField
[src]

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

impl<'de, N> Deserialize<'de> for CircularCone<N> where
    N: RealField + Deserialize<'de>, 
[src]

impl<N> Eq for CircularCone<N> where
    N: Eq + RealField
[src]

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

impl<N> Serialize for CircularCone<N> where
    N: RealField + Serialize
[src]

Auto Trait Implementations

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

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

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

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

impl<N> UnwindSafe for CircularCone<N> where
    N: Scalar + UnwindSafe

Blanket Implementations

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

impl<T> Any for T where
    T: Any

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> Downcast for T where
    T: Any

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

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> Event for T where
    T: Send + Sync + 'static, 

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

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

impl<T> Resource for T where
    T: Any, 

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Scalar for T where
    T: PartialEq<T> + Copy + Any + Debug
[src]

impl<T> Slottable for T where
    T: Copy
[src]

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<T> UserData for T where
    T: Clone + Send + Sync + Any
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,