stepper_motion/trajectory/
mod.rs

1//! Trajectory module for stepper-motion.
2//!
3//! Provides named trajectory storage, lookup, and building.
4
5mod builder;
6mod registry;
7
8pub use builder::{TrajectoryBuilder, WaypointTrajectoryBuilder, MAX_WAYPOINTS};
9pub use registry::{TrajectoryRegistry, MAX_TRAJECTORIES};