pub trait IMap_CellVertexMethods: IMap_CellVertex {
// Provided methods
fn clear(self) { ... }
fn calc(self, x: impl Into<i32>, z: impl Into<i32>) { ... }
fn get_item(self, i: impl Into<i32>) -> Vector3 { ... }
fn set_item(self, i: impl Into<i32>, value: impl Into<Vector3>) { ... }
fn get_min_height(self) -> f32 { ... }
fn get_max_height(self) -> f32 { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn set_item(self, i: impl Into<i32>, value: impl Into<Vector3>)
fn set_item(self, i: impl Into<i32>, value: impl Into<Vector3>)
set_Item(i32, crate::unity_engine::vector3::Vector3) overload
Sourcefn get_min_height(self) -> f32
fn get_min_height(self) -> f32
get_MinHeight() overload
Sourcefn get_max_height(self) -> f32
fn get_max_height(self) -> f32
get_MaxHeight() 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: IMap_CellVertex> IMap_CellVertexMethods for __T
Available on crate feature
app-map only.