copp 0.2.0

Convex-objective path parameterization for robotic trajectory planning.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Numerical kernels: LP solvers and helper predicates.
//!
//! # Method identity
//! - `general`: vector products and convexity predicates.
//! - `lp`: incremental LP solvers in 1D/2D/3D and warm-start helpers.

mod general;
mod lp;

pub(crate) use general::*;
pub(crate) use lp::*;