spatio_types/
trajectory.rs

1use crate::point::{TemporalPoint, TemporalPoint3D};
2
3pub type Trajectory = Vec<TemporalPoint>;
4pub type Trajectory3D = Vec<TemporalPoint3D>;