[][src]Struct terr::heightmap::Heightmap

pub struct Heightmap<F> { /* fields omitted */ }

Our heightmap representation.

Methods

impl<F> Heightmap<F>[src]

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

Get length in first dimension.

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

Get length in second dimension.

pub fn set(&mut self, x: usize, y: usize, val: F)[src]

Set value at the given coordinates.

Requires x < self.len0() and y < self.len1().

impl<F: Clone> Heightmap<F>[src]

pub fn new(x: usize, y: usize, v: F) -> Self[src]

Construct a new Heightmap with size x×y and all elements initialised to v.

pub fn get(&self, x: usize, y: usize) -> F[src]

Get value at the given coordinates.

Requires x < self.len0() and y < self.len1().

impl<F: RealField> Heightmap<F>[src]

pub fn to_heightfield(&self, width: F, height: F) -> HeightField<F>[src]

pub fn to_trimesh(&self, width: F, height: F) -> TriMesh<F>[src]

Auto Trait Implementations

impl<F> Send for Heightmap<F> where
    F: Send

impl<F> Sync for Heightmap<F> where
    F: Sync

Blanket Implementations

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[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>, 

impl<T> Downcast for T where
    T: Any