pub struct Plane<N>where
    N: RealField + Copy,{
    pub normal: Unit<Matrix<N, Const<nalgebra::::base::dimension::U2::{constant#0}>, Const<1>, ArrayStorage<N, 2, 1>>>,
}
Expand description

SupportMap description of a plane.

Fields§

§normal: Unit<Matrix<N, Const<nalgebra::::base::dimension::U2::{constant#0}>, Const<1>, ArrayStorage<N, 2, 1>>>

The plane normal.

Implementations§

source§

impl<N> Plane<N>where N: RealField + Copy,

source

pub fn new( normal: Unit<Matrix<N, Const<nalgebra::::base::dimension::U2::{constant#0}>, Const<1>, ArrayStorage<N, 2, 1>>> ) -> Plane<N>

Builds a new plane from its center and its normal.

source

pub fn normal( &self ) -> &Unit<Matrix<N, Const<nalgebra::::base::dimension::U2::{constant#0}>, Const<1>, ArrayStorage<N, 2, 1>>>

👎Deprecated: use the self.normal public field directly.

The plane normal.

Trait Implementations§

source§

impl<N> Clone for Plane<N>where N: Clone + RealField + Copy,

source§

fn clone(&self) -> Plane<N>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<N> Debug for Plane<N>where N: Debug + RealField + Copy,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<'de, N> Deserialize<'de> for Plane<N>where N: RealField + Copy + Deserialize<'de>,

source§

fn deserialize<__D>( __deserializer: __D ) -> Result<Plane<N>, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<N> HasBoundingVolume<N, AABB<N>> for Plane<N>where N: RealField + Copy,

source§

fn bounding_volume(&self, _: &Isometry<N, Unit<Complex<N>>, 2>) -> AABB<N>

The bounding volume of self transformed by m.
source§

fn local_bounding_volume(&self) -> AABB<N>

The bounding volume of self.
source§

impl<N> HasBoundingVolume<N, BoundingSphere<N>> for Plane<N>where N: RealField + Copy,

source§

fn bounding_volume( &self, m: &Isometry<N, Unit<Complex<N>>, 2> ) -> BoundingSphere<N>

The bounding volume of self transformed by m.
source§

fn local_bounding_volume(&self) -> BoundingSphere<N>

The bounding volume of self.
source§

impl<N> PartialEq<Plane<N>> for Plane<N>where N: PartialEq<N> + RealField + Copy,

source§

fn eq(&self, other: &Plane<N>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<N> PointQuery<N> for Plane<N>where N: RealField + Copy,

source§

fn project_point( &self, m: &Isometry<N, Unit<Complex<N>>, 2>, pt: &OPoint<N, Const<2>>, solid: bool ) -> PointProjection<N>

Projects a point on self transformed by m.
source§

fn project_point_with_feature( &self, m: &Isometry<N, Unit<Complex<N>>, 2>, pt: &OPoint<N, Const<2>> ) -> (PointProjection<N>, FeatureId)

Projects a point on the boundary of self transformed by m and retuns the id of the feature the point was projected on.
source§

fn distance_to_point( &self, m: &Isometry<N, Unit<Complex<N>>, 2>, pt: &OPoint<N, Const<2>>, solid: bool ) -> N

Computes the minimal distance between a point and self transformed by m.
source§

fn contains_point( &self, m: &Isometry<N, Unit<Complex<N>>, 2>, pt: &OPoint<N, Const<2>> ) -> bool

Tests if the given point is inside of self transformed by m.
source§

impl<N> RayCast<N> for Plane<N>where N: RealField + Copy,

source§

fn toi_and_normal_with_ray( &self, m: &Isometry<N, Unit<Complex<N>>, 2>, ray: &Ray<N>, max_toi: N, solid: bool ) -> Option<RayIntersection<N>>

Computes the time of impact, and normal between this transformed shape and a ray.
source§

fn toi_with_ray( &self, m: &Isometry<N, Unit<Complex<N>>, 2>, ray: &Ray<N>, max_toi: N, solid: bool ) -> Option<N>

Computes the time of impact between this transform shape and a ray.
source§

fn intersects_ray( &self, m: &Isometry<N, Unit<Complex<N>>, 2>, ray: &Ray<N>, max_toi: N ) -> bool

Tests whether a ray intersects this transformed shape.
source§

impl<N> Serialize for Plane<N>where N: RealField + Copy + Serialize,

source§

fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<N> Shape<N> for Plane<N>where N: RealField + Copy,

source§

fn aabb(&self, m: &Isometry<N, Unit<Complex<N>>, 2>) -> AABB<N>

The AABB of self transformed by m.
source§

fn local_aabb(&self) -> AABB<N>

The AABB of self.
source§

fn bounding_sphere( &self, m: &Isometry<N, Unit<Complex<N>>, 2> ) -> BoundingSphere<N>

The bounding sphere of self transformed by m.
source§

fn as_ray_cast(&self) -> Option<&dyn RayCast<N>>

The RayCast implementation of self.
source§

fn as_point_query(&self) -> Option<&dyn PointQuery<N>>

The PointQuery implementation of self.
source§

fn tangent_cone_contains_dir( &self, _: FeatureId, m: &Isometry<N, Unit<Complex<N>>, 2>, _: Option<&[N]>, dir: &Unit<Matrix<N, Const<nalgebra::::base::dimension::U2::{constant#0}>, Const<1>, ArrayStorage<N, 2, 1>>> ) -> bool

Check if if the feature _feature of the i-th subshape of self transformed by m has a tangent cone that contains dir at the point pt.
source§

fn local_bounding_sphere(&self) -> BoundingSphere<N>

The bounding sphere of self.
source§

fn subshape_containing_feature(&self, _i: FeatureId) -> usize

Returns the id of the subshape containing the specified feature. Read more
source§

fn as_convex_polyhedron(&self) -> Option<&dyn ConvexPolyhedron<N>>

The convex polyhedron representation of self if applicable.
source§

fn as_support_map(&self) -> Option<&dyn SupportMap<N>>

The support mapping of self if applicable.
source§

fn as_composite_shape(&self) -> Option<&dyn CompositeShape<N>>

The composite shape representation of self if applicable.
source§

fn as_deformable_shape(&self) -> Option<&dyn DeformableShape<N>>

The deformable shape representation of self if applicable.
source§

fn as_deformable_shape_mut(&mut self) -> Option<&mut dyn DeformableShape<N>>

The mutable deformable shape representation of self if applicable.
source§

fn is_convex_polyhedron(&self) -> bool

Whether self uses a convex polyhedron representation.
source§

fn is_support_map(&self) -> bool

Whether self uses a support-mapping based representation.
source§

fn is_composite_shape(&self) -> bool

Whether self uses a composite shape-based representation.
source§

fn is_deformable_shape(&self) -> bool

Whether self uses a composite shape-based representation.
source§

impl<N> StructuralPartialEq for Plane<N>where N: RealField + Copy,

Auto Trait Implementations§

§

impl<N> RefUnwindSafe for Plane<N>where N: RefUnwindSafe,

§

impl<N> Send for Plane<N>

§

impl<N> Sync for Plane<N>

§

impl<N> Unpin for Plane<N>where N: Unpin,

§

impl<N> UnwindSafe for Plane<N>where N: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> Downcast for Twhere T: Any,

§

fn into_any(self: Box<T, Global>) -> Box<dyn Any, Global>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
§

fn into_any_rc(self: Rc<T, Global>) -> Rc<dyn Any, Global>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
§

impl<T> DowncastSync for Twhere T: Any + Send + Sync,

§

fn into_any_arc(self: Arc<T, Global>) -> Arc<dyn Any + Send + Sync, Global>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
§

impl<T> Finalize for T

§

unsafe fn finalize_raw(data: *mut ())

Safety Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
§

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

§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> UserData for Twhere T: Clone + Any + Send + Sync,

source§

fn clone_boxed(&self) -> Box<dyn UserData, Global>

Clone this trait-object.
source§

fn to_any(&self) -> Box<dyn Any + Send + Sync, Global>

Clone as its super-trait trait objects.
source§

fn as_any(&self) -> &(dyn Any + Send + Sync + 'static)

Downcast to Any.
§

impl<T> Component for Twhere T: Send + Sync + 'static,

source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,

source§

impl<T> Scalar for Twhere T: 'static + Clone + PartialEq<T> + Debug,