[][src]Struct parry3d::bounding_volume::SimdAABB

pub struct SimdAABB {
    pub mins: Point<SimdReal>,
    pub maxs: Point<SimdReal>,
}

Four AABB represented as a single SoA AABB with SIMD components.

Fields

mins: Point<SimdReal>

The min coordinates of the AABBs.

maxs: Point<SimdReal>

The max coordinates the AABBs.

Implementations

impl SimdAABB[src]

pub fn new_invalid() -> Self[src]

An invalid AABB.

pub fn splat(aabb: AABB) -> Self[src]

Builds an SIMD aabb composed of four identical aabbs.

pub fn center(&self) -> Point<SimdReal>[src]

The center of all the AABBs represented by `self``.

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

The radius of all the AABBs represented by `self``.

pub fn dilate_by_factor(&mut self, factor: SimdReal)[src]

Dilate all the AABBs represented by self`` by their extents multiplied by the given scale factor`.

pub fn replace(&mut self, i: usize, aabb: AABB)[src]

Replace the i-th AABB of this SIMD AAAB by the given value.

pub fn cast_local_ray(
    &self,
    ray: &SimdRay,
    max_toi: SimdReal
) -> (SimdBool, SimdReal)
[src]

Casts a ray on all the AABBs represented by self.

pub fn distance_to_local_point(&self, point: &Point<SimdReal>) -> SimdReal[src]

Computes the distances between a point and all the AABBs represented by self.

pub fn distance_to_origin(&self) -> SimdReal[src]

Computes the distances between the origin and all the AABBs represented by self.

pub fn contains_local_point(&self, point: &Point<SimdReal>) -> SimdBool[src]

Check which AABB represented by self contains the given point.

pub fn contains(&self, other: &SimdAABB) -> SimdBool[src]

Lanewise check which AABB represented by self contains the given set of other aabbs. The check is performed lane-wise.

pub fn intersects(&self, other: &SimdAABB) -> SimdBool[src]

Check which AABB represented by self contains the given set of other aabbs. The check is performed lane-wise.

pub fn to_merged_aabb(&self) -> AABB[src]

Merge all the AABB represented by self into a single one.

Trait Implementations

impl Clone for SimdAABB[src]

impl Copy for SimdAABB[src]

impl Debug for SimdAABB[src]

impl From<[AABB; 4]> for SimdAABB[src]

impl<'a, D: ?Sized, G1: ?Sized> SimdBestFirstVisitor<<G1 as TypedSimdCompositeShape>::PartId, SimdAABB> for CompositeShapeAgainstShapeClosestPointsVisitor<'a, D, G1> where
    D: QueryDispatcher,
    G1: TypedSimdCompositeShape
[src]

type Result = (G1::PartId, ClosestPoints)

The result of a best-first traversal.

impl<'a, D: ?Sized, G1: ?Sized> SimdBestFirstVisitor<<G1 as TypedSimdCompositeShape>::PartId, SimdAABB> for CompositeShapeAgainstAnyDistanceVisitor<'a, D, G1> where
    D: QueryDispatcher,
    G1: TypedSimdCompositeShape
[src]

type Result = (G1::PartId, Real)

The result of a best-first traversal.

impl<'a, D: ?Sized, G1: ?Sized> SimdBestFirstVisitor<<G1 as TypedSimdCompositeShape>::PartId, SimdAABB> for IntersectionCompositeShapeShapeBestFirstVisitor<'a, D, G1> where
    D: QueryDispatcher,
    G1: TypedSimdCompositeShape
[src]

type Result = (G1::PartId, bool)

The result of a best-first traversal.

impl<'a, D: ?Sized, G1: ?Sized> SimdBestFirstVisitor<<G1 as TypedSimdCompositeShape>::PartId, SimdAABB> for NonlinearTOICompositeShapeShapeBestFirstVisitor<'a, D, G1> where
    D: QueryDispatcher,
    G1: TypedSimdCompositeShape
[src]

type Result = (G1::PartId, TOI)

The result of a best-first traversal.

impl<'a, D: ?Sized, G1: ?Sized> SimdBestFirstVisitor<<G1 as TypedSimdCompositeShape>::PartId, SimdAABB> for TOICompositeShapeShapeBestFirstVisitor<'a, D, G1> where
    D: QueryDispatcher,
    G1: TypedSimdCompositeShape
[src]

type Result = (G1::PartId, TOI)

The result of a best-first traversal.

impl<'a, S> SimdBestFirstVisitor<<S as TypedSimdCompositeShape>::PartId, SimdAABB> for PointCompositeShapeProjBestFirstVisitor<'a, S> where
    S: TypedSimdCompositeShape
[src]

type Result = (PointProjection, S::PartId)

The result of a best-first traversal.

impl<'a, S> SimdBestFirstVisitor<<S as TypedSimdCompositeShape>::PartId, SimdAABB> for PointCompositeShapeProjWithLocationBestFirstVisitor<'a, S> where
    S: TypedSimdCompositeShape,
    <S::PartShape as PointQueryWithLocation>::Location: Copy,
    S::PartShape: PointQueryWithLocation,
    S::PartShape: Copy
[src]

type Result = (PointProjection, (S::PartId, <S::PartShape as PointQueryWithLocation>::Location))

The result of a best-first traversal.

impl<'a, S> SimdBestFirstVisitor<<S as TypedSimdCompositeShape>::PartId, SimdAABB> for PointCompositeShapeProjWithFeatureBestFirstVisitor<'a, S> where
    S: TypedSimdCompositeShape,
    FeatureId: Copy
[src]

type Result = (PointProjection, (S::PartId, FeatureId))

The result of a best-first traversal.

impl<'a, S> SimdBestFirstVisitor<<S as TypedSimdCompositeShape>::PartId, SimdAABB> for RayCompositeShapeToiBestFirstVisitor<'a, S> where
    S: TypedSimdCompositeShape
[src]

type Result = (S::PartId, Real)

The result of a best-first traversal.

impl<'a, S> SimdBestFirstVisitor<<S as TypedSimdCompositeShape>::PartId, SimdAABB> for RayCompositeShapeToiAndNormalBestFirstVisitor<'a, S> where
    S: TypedSimdCompositeShape
[src]

type Result = (S::PartId, RayIntersection)

The result of a best-first traversal.

impl<'a, S: SimdCompositeShape + PointQuery> SimdBestFirstVisitor<u32, SimdAABB> for CompositeClosestPointVisitor<'a, S>[src]

type Result = PointProjection

The result of a best-first traversal.

impl<'a, T, F> SimdVisitor<T, SimdAABB> for BoundingVolumeIntersectionsVisitor<'a, T, F> where
    F: FnMut(&T) -> bool
[src]

impl<'a, T, F> SimdVisitor<T, SimdAABB> for PointIntersectionsVisitor<'a, T, F> where
    F: FnMut(&T) -> bool
[src]

impl<'a, T, F> SimdVisitor<T, SimdAABB> for RayIntersectionsVisitor<'a, T, F> where
    F: FnMut(&T) -> bool
[src]

impl<'a, S: SimdCompositeShape> SimdVisitor<u32, SimdAABB> for CompositePointContainmentTest<'a, S>[src]

Auto Trait Implementations

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
[src]

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

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>, 
[src]

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>,