Skip to main content

IMapHeight_CellInfo

Trait IMapHeight_CellInfo 

Source
pub trait IMapHeight_CellInfo: IObject {
    // Provided methods
    fn heights(self) -> Array<f32> { ... }
    fn set_heights(self, value: Array<f32>) { ... }
    fn normals(self) -> Array<Vector3> { ... }
    fn set_normals(self, value: Array<Vector3>) { ... }
    fn layers(self) -> Array<i32> { ... }
    fn set_layers(self, value: Array<i32>) { ... }
}

Provided Methods§

Source

fn heights(self) -> Array<f32>

Source

fn set_heights(self, value: Array<f32>)

Source

fn normals(self) -> Array<Vector3>

Source

fn set_normals(self, value: Array<Vector3>)

Source

fn layers(self) -> Array<i32>

Source

fn set_layers(self, value: Array<i32>)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§