Skip to main content

IMapHeight_CellInfoMethods

Trait IMapHeight_CellInfoMethods 

Source
pub trait IMapHeight_CellInfoMethods: IMapHeight_CellInfo {
    // Provided methods
    fn ctor(self) { ... }
    fn clear(self) { ... }
    fn get_min(self) -> f32 { ... }
    fn get_max(self) -> f32 { ... }
    fn get_diff(self) -> f32 { ... }
    fn update(
        self,
        index: impl Into<i32>,
        x: impl Into<f32>,
        z: impl Into<f32>,
        layer_mask_a: impl Into<i32>,
        layer_mask_b: impl Into<i32>,
    ) { ... }
    fn is_flat(self, index: impl Into<i32>) -> bool { ... }
    fn is_flat_2(self) -> bool { ... }
    fn commit(self) { ... }
    fn copy(self, src: impl Into<MapHeight_CellInfo>) { ... }
}

Provided Methods§

Source

fn ctor(self)

.ctor() overload

Source

fn clear(self)

Clear() overload

Source

fn get_min(self) -> f32

GetMin() overload

Source

fn get_max(self) -> f32

GetMax() overload

Source

fn get_diff(self) -> f32

GetDiff() overload

Source

fn update( self, index: impl Into<i32>, x: impl Into<f32>, z: impl Into<f32>, layer_mask_a: impl Into<i32>, layer_mask_b: impl Into<i32>, )

Update(i32, f32, f32, i32, i32) overload

Source

fn is_flat(self, index: impl Into<i32>) -> bool

IsFlat(i32) overload

Source

fn is_flat_2(self) -> bool

IsFlat() overload

Source

fn commit(self)

Commit() overload

Source

fn copy(self, src: impl Into<MapHeight_CellInfo>)

Copy(crate::app::mapheight::MapHeight_CellInfo) overload

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§

Source§

impl<__T: IMapHeight_CellInfo> IMapHeight_CellInfoMethods for __T

Available on crate feature app-mapheight only.