Skip to main content

IIKSolver_Bone

Trait IIKSolver_Bone 

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

Source

fn length(self) -> f32

Source

fn set_length(self, value: f32)

Source

fn sqr_mag(self) -> f32

Source

fn set_sqr_mag(self, value: f32)

Source

fn axis(self) -> Vector3

Source

fn set_axis(self, value: Vector3)

Source

fn rotation_limit_field(self) -> RotationLimit

Source

fn set_rotation_limit_field(self, value: RotationLimit)

Source

fn is_limited(self) -> bool

Source

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.

Implementors§