Skip to main content

IMap_CellVertexMethods

Trait IMap_CellVertexMethods 

Source
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§

Source

fn clear(self)

Clear() overload

Source

fn calc(self, x: impl Into<i32>, z: impl Into<i32>)

Calc(i32, i32) overload

Source

fn get_item(self, i: impl Into<i32>) -> Vector3

get_Item(i32) overload

Source

fn set_item(self, i: impl Into<i32>, value: impl Into<Vector3>)

set_Item(i32, crate::unity_engine::vector3::Vector3) overload

Source

fn get_min_height(self) -> f32

get_MinHeight() overload

Source

fn get_max_height(self) -> f32

get_MaxHeight() overload

Source

fn ctor(self)

.ctor() 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: IMap_CellVertex> IMap_CellVertexMethods for __T

Available on crate feature app-map only.