phyz 0.3.0

Multi-physics differentiable simulation engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Model and state types for phyz physics engine.
//!
//! `Model` is the static description of a physical system (topology, masses, joint types).
//! `State` is the mutable simulation state (positions, velocities, forces).

pub mod body;
pub mod joint;
pub mod model;
pub mod state;

pub use body::{Body, Geometry};
pub use joint::{Joint, JointType};
pub use model::{Actuator, Model, ModelBuilder};
pub use state::State;