pub trait IIKSolver_Node: IIKSolver_Point {
// Provided methods
fn length(self) -> f32 { ... }
fn set_length(self, value: f32) { ... }
fn effector_position_weight(self) -> f32 { ... }
fn set_effector_position_weight(self, value: f32) { ... }
fn effector_rotation_weight(self) -> f32 { ... }
fn set_effector_rotation_weight(self, value: f32) { ... }
fn offset(self) -> Vector3 { ... }
fn set_offset(self, value: Vector3) { ... }
}Provided Methods§
fn length(self) -> f32
fn set_length(self, value: f32)
fn effector_position_weight(self) -> f32
fn set_effector_position_weight(self, value: f32)
fn effector_rotation_weight(self) -> f32
fn set_effector_rotation_weight(self, value: f32)
fn offset(self) -> Vector3
fn set_offset(self, value: Vector3)
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.