pub trait IIKSolver_Bone: IIKSolver_Point {
// Provided methods
fn length(self) -> f32 { ... }
fn set_length(self, value: f32) { ... }
fn sqr_mag(self) -> f32 { ... }
fn set_sqr_mag(self, value: f32) { ... }
fn axis(self) -> Vector3 { ... }
fn set_axis(self, value: Vector3) { ... }
fn rotation_limit_field(self) -> RotationLimit { ... }
fn set_rotation_limit_field(self, value: RotationLimit) { ... }
fn is_limited(self) -> bool { ... }
fn set_is_limited(self, value: bool) { ... }
}Provided Methods§
fn length(self) -> f32
fn set_length(self, value: f32)
fn sqr_mag(self) -> f32
fn set_sqr_mag(self, value: f32)
fn axis(self) -> Vector3
fn set_axis(self, value: Vector3)
fn rotation_limit_field(self) -> RotationLimit
fn set_rotation_limit_field(self, value: RotationLimit)
fn is_limited(self) -> bool
fn set_is_limited(self, value: bool)
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.