Skip to main content

IPoser

Trait IPoser 

Source
pub trait IPoser: ISolverManager {
    // Provided methods
    fn pose_root(self) -> Transform { ... }
    fn set_pose_root(self, value: Transform) { ... }
    fn weight(self) -> f32 { ... }
    fn set_weight(self, value: f32) { ... }
    fn local_rotation_weight(self) -> f32 { ... }
    fn set_local_rotation_weight(self, value: f32) { ... }
    fn local_position_weight(self) -> f32 { ... }
    fn set_local_position_weight(self, value: f32) { ... }
    fn initiated(self) -> bool { ... }
    fn set_initiated(self, value: bool) { ... }
}

Provided Methods§

Source

fn pose_root(self) -> Transform

Source

fn set_pose_root(self, value: Transform)

Source

fn weight(self) -> f32

Source

fn set_weight(self, value: f32)

Source

fn local_rotation_weight(self) -> f32

Source

fn set_local_rotation_weight(self, value: f32)

Source

fn local_position_weight(self) -> f32

Source

fn set_local_position_weight(self, value: f32)

Source

fn initiated(self) -> bool

Source

fn set_initiated(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§