Trait jumpy::core::physics::rapier::HeightFieldStorage

source ·
pub trait HeightFieldStorage {
    type Heights: Array1<f32>;
    type Status: Array1<bool>;
}
Expand description

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

Required Associated Types§

source

type Heights: Array1<f32>

Type of the array containing the heightfield’s heights.

source

type Status: Array1<bool>

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

Implementors§