pub trait IAkVertexMethods: IAkVertex {
// Provided methods
fn zero(self) { ... }
fn set_x(self, value: impl Into<f32>) { ... }
fn get_x(self) -> f32 { ... }
fn set_y(self, value: impl Into<f32>) { ... }
fn get_y(self) -> f32 { ... }
fn set_z(self, value: impl Into<f32>) { ... }
fn get_z(self) -> f32 { ... }
fn ctor(self) { ... }
fn ctor_2(self, x: impl Into<f32>, y: impl Into<f32>, z: impl Into<f32>) { ... }
fn clear(self) { ... }
fn clone(self, other: impl Into<AkVertex>) { ... }
}Provided Methods§
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: IAkVertex> IAkVertexMethods for __T
Available on crate feature
root-akvertex only.