13
0

go back to always interpolating framed curve points.

This commit is contained in:
nick_m 2016-12-11 23:54:03 +11:00
parent 00eef2e000
commit c3ab67ddb6

View File

@ -85,15 +85,8 @@ FramedCurve::interpolate ()
}
samples.clear ();
if (_points.size() == 3) {
samples.push_back (curve_points.front());
samples.push_back (curve_points.back());
n_samples = 2;
} else {
InterpolatedCurve::interpolate (curve_points, points_per_segment, CatmullRomCentripetal, false, samples);
n_samples = samples.size();
}
InterpolatedCurve::interpolate (curve_points, points_per_segment, CatmullRomCentripetal, false, samples);
n_samples = samples.size();
}
void