pub fn sample_uniform<C: ParametricCurve>(
curve: &C,
t_start: f64,
t_end: f64,
n: usize,
) -> Vec<Point3> ⓘExpand description
Sample n evenly-spaced points in parameter space over [t_start, t_end].
n == 0returns an emptyVec.n == 1returns a single point att_start.n >= 2returns points including both endpoints.