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§
Sourcefn 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 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
Sourcefn copy(self, src: impl Into<MapHeight_CellInfo>)
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§
impl<__T: IMapHeight_CellInfo> IMapHeight_CellInfoMethods for __T
Available on crate feature
app-mapheight only.