copp 0.1.0

Convex-objective path parameterization for robotic trajectory planning.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Demo robot models used by tests and examples.
//!
//! # Included models
//! - `robot_2dof` (test-only): planar 2-link model with closed-form dynamics.

/// Test-only 2-DoF planar robot implementation and checks.
#[cfg(test)]
mod robot_2dof;

/// Re-export test-only 2-DoF robot symbols for internal test modules.
#[cfg(test)]
pub(crate) use robot_2dof::*;