Struct rapier2d::geometry::HeightField[][src]

pub struct HeightField { /* fields omitted */ }

A 2D heightfield.

Implementations

impl HeightField[src]

pub fn aabb(&self, pos: &Isometry<f32, Unit<Complex<f32>>, 2_usize>) -> AABB[src]

Computes the world-space AABB of this heightfield, transformed by pos.

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

Computes the local-space AABB of this heightfield.

impl HeightField[src]

pub fn bounding_sphere(
    &self,
    pos: &Isometry<f32, Unit<Complex<f32>>, 2_usize>
) -> BoundingSphere
[src]

Computes the world-space bounding sphere of this height-field, transformed by pos.

pub fn local_bounding_sphere(&self) -> BoundingSphere[src]

Computes the local-space bounding sphere of this height-field.

impl HeightField[src]

pub fn new(
    heights: Matrix<f32, Dynamic, Const<1_usize>, VecStorage<f32, Dynamic, Const<1_usize>>>,
    scale: Matrix<f32, Const<{_: usize}>, Const<1_usize>, ArrayStorage<f32, 2_usize, 1_usize>>
) -> HeightField
[src]

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

pub fn num_cells(&self) -> usize[src]

The number of cells of this heightfield.

pub fn heights(
    &self
) -> &Matrix<f32, Dynamic, Const<1_usize>, VecStorage<f32, Dynamic, Const<1_usize>>>
[src]

The height at each cell endpoint.

pub fn scale(
    &self
) -> &Matrix<f32, Const<{_: usize}>, Const<1_usize>, ArrayStorage<f32, 2_usize, 1_usize>>
[src]

The scale factor applied to this heightfield.

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

The AABB of this heightfield.

pub fn cell_width(&self) -> f32[src]

The width of a single cell of this heightfield.

pub fn unit_cell_width(&self) -> f32[src]

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

pub fn start_x(&self) -> f32[src]

The left-most x-coordinate of this heightfield.

pub fn cell_at_point(&self, pt: &Point<f32, 2_usize>) -> Option<usize>[src]

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

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

Iterator through all the segments of this heightfield.

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

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

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

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

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

Checks if the i-th segment has been removed.

pub fn map_elements_in_local_aabb(
    &self,
    aabb: &AABB,
    f: &mut impl FnMut(u32, &Segment)
)
[src]

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

Trait Implementations

impl Clone for HeightField[src]

impl Debug for HeightField[src]

impl PointQuery for HeightField[src]

impl PointQueryWithLocation for HeightField[src]

type Location = (usize, TrianglePointLocation)

Additional shape-specific projection information Read more

impl RayCast for HeightField[src]

impl Shape for HeightField[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: Any + Send + Sync
[src]

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

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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.