pub trait HeightFieldStorage { type Heights: Array1<f32>; type Status: Array1<bool>; }
Trait describing all the types needed for storing an heightfield’s data.
Type of the array containing the heightfield’s heights.
Type of the array containing the heightfield’s cells status.