Skip to main content

IFABRIKChain

Trait IFABRIKChain 

Source
pub trait IFABRIKChain: IObject {
    // Provided methods
    fn ik(self) -> FABRIK { ... }
    fn set_ik(self, value: FABRIK) { ... }
    fn pull(self) -> f32 { ... }
    fn set_pull(self, value: f32) { ... }
    fn pin(self) -> f32 { ... }
    fn set_pin(self, value: f32) { ... }
    fn children(self) -> Array<i32> { ... }
    fn set_children(self, value: Array<i32>) { ... }
}

Provided Methods§

Source

fn ik(self) -> FABRIK

Source

fn set_ik(self, value: FABRIK)

Source

fn pull(self) -> f32

Source

fn set_pull(self, value: f32)

Source

fn pin(self) -> f32

Source

fn set_pin(self, value: f32)

Source

fn children(self) -> Array<i32>

Source

fn set_children(self, value: Array<i32>)

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§