Closed jonathanlew closed 4 years ago
Evan asked for a Spline.length() function to get the length of the spline
Just as a note, this likely won't get done, we already have linear splines (essentially connected line segments) and I'm going to implement a CubicBezierSpline
, but a generic spline class actually gets quite tricky in terms of specifying constraints in a user-friendly way.
@garethellis0 can we close this ticket now, since we have the Bezier curve implementation?
Yes, in retrospect this was overly ambitiously general.
Description of the task
Spline(std::vector points, unsigned int order) constructor will take the points and interpolate with
order
degree polynomials with C(order
- 1) continuityAcceptance criteria
Blocked By
942