pub trait HeightFieldStorage {
    type Heights: Array1<Real>;
    type Status: Array1<HeightFieldCellStatus>;
}
Expand description

Trait describing all the types needed for storing an heightfield’s data.

Required Associated Types§

source

type Heights: Array1<Real>

Type of the array containing the heightfield’s heights.

source

type Status: Array1<HeightFieldCellStatus>

Type of the array containing the heightfield’s cells status.

Implementors§