pub struct HeightField<N>where
    N: RealField + Copy,{ /* private fields */ }
Expand description

A 2D heightfield.

Implementations§

source§

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

source

pub fn new( heights: Matrix<N, Dynamic, Const<1>, VecStorage<N, Dynamic, Const<1>>>, scale: Matrix<N, Const<nalgebra::::base::dimension::U2::{constant#0}>, Const<1>, ArrayStorage<N, 2, 1>> ) -> HeightField<N>

Creates a new 2D heightfield with the given heights and scale factor.

source

pub fn num_cells(&self) -> usize

The number of cells of this heightfield.

source

pub fn heights( &self ) -> &Matrix<N, Dynamic, Const<1>, VecStorage<N, Dynamic, Const<1>>>

The height at each cell endpoint.

source

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

The scale factor applied to this heightfield.

source

pub fn aabb(&self) -> &AABB<N>

The AABB of this heightfield.

source

pub fn cell_width(&self) -> N

The width of a single cell of this heightfield.

source

pub fn unit_cell_width(&self) -> N

The width of a single cell of this heightfield, without taking the scale factor into account.

source

pub fn start_x(&self) -> N

The left-most x-coordinate of this heightfield.

source

pub fn cell_at_point(&self, pt: &OPoint<N, Const<2>>) -> Option<usize>

Index of the cell a point is on after vertical projection.

source

pub fn segments<'a>(&'a self) -> impl Iterator<Item = Segment<N>> + 'a

Iterator through all the segments of this heightfield.

source

pub fn segment_at(&self, i: usize) -> Option<Segment<N>>

The i-th segment of the heightfield if it has not been removed.

source

pub fn set_segment_removed(&mut self, i: usize, removed: bool)

Mark the i-th segment of this heightfield as removed or not.

source

pub fn is_segment_removed(&self, i: usize) -> bool

Checks if the i-th segment has been removed.

source

pub fn map_elements_in_local_aabb( &self, aabb: &AABB<N>, f: &mut impl FnMut(usize, &Segment<N>, &dyn ContactPreprocessor<N>) )

Applies f to each segment of this heightfield that intersects the given aabb.

Trait Implementations§

source§

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

source§

fn clone(&self) -> HeightField<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 HeightField<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 HeightField<N>where N: RealField + Copy + Deserialize<'de>,

source§

fn deserialize<__D>( __deserializer: __D ) -> Result<HeightField<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 HeightField<N>where N: RealField + Copy,

source§

fn bounding_volume(&self, m: &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 HeightField<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> PointQuery<N> for HeightField<N>where N: RealField + Copy,

source§

fn project_point( &self, m: &Isometry<N, Unit<Complex<N>>, 2>, point: &OPoint<N, Const<2>>, _: 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>, point: &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 contains_point( &self, _m: &Isometry<N, Unit<Complex<N>>, 2>, _point: &OPoint<N, Const<2>> ) -> bool

Tests if the given point is inside of self transformed by m.
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§

impl<N> PointQueryWithLocation<N> for HeightField<N>where N: RealField + Copy,

§

type Location = (usize, TrianglePointLocation<N>)

Additional shape-specific projection information Read more
source§

fn project_point_with_location( &self, _m: &Isometry<N, Unit<Complex<N>>, 2>, _point: &OPoint<N, Const<2>>, _: bool ) -> (PointProjection<N>, <HeightField<N> as PointQueryWithLocation<N>>::Location)

Projects a point on self transformed by m.
source§

impl<N> RayCast<N> for HeightField<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, _: 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 HeightField<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 HeightField<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, _fid: FeatureId, _m: &Isometry<N, Unit<Complex<N>>, 2>, _deformations: 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 subshape_containing_feature(&self, _id: FeatureId) -> usize

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

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

The bounding sphere of self.
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.

Auto Trait Implementations§

§

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

§

impl<N> Send for HeightField<N>

§

impl<N> Sync for HeightField<N>

§

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

§

impl<N> UnwindSafe for HeightField<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>,