smpl-core 0.9.0

Core functionality of smpl-rs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// Options specifically for the forward pass of smpl family models
#[derive(Clone)]
pub struct SmplOptions {
    pub enable_pose_corrective: bool,
}
impl Default for SmplOptions {
    fn default() -> Self {
        Self {
            enable_pose_corrective: true,
        }
    }
}
impl SmplOptions {
    pub fn new(enable_pose_corrective: bool) -> Self {
        Self { enable_pose_corrective }
    }
}