[][src]Struct parry2d::shape::HeightField

pub struct HeightField { /* fields omitted */ }

A 2D heightfield.

Implementations

impl HeightField[src]

pub fn aabb(&self, pos: &Isometry<Real>) -> 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<Real>) -> 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: DVector<Real>, scale: Vector<Real>) -> Self[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) -> &DVector<Real>[src]

The height at each cell endpoint.

pub fn scale(&self) -> &Vector<Real>[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) -> Real[src]

The width of a single cell of this heightfield.

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

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

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

The left-most x-coordinate of this heightfield.

pub fn cell_at_point(&self, pt: &Point2<Real>) -> Option<usize>[src]

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

pub fn segments<'a>(&'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: Send + Sync + Any
[src]

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

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

impl<Src, Dst> LosslessTryInto<Dst> for Src where
    Dst: LosslessTryFrom<Src>, 
[src]

impl<Src, Dst> LossyInto<Dst> for Src where
    Dst: LossyFrom<Src>, 
[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>,