Add BezierCurve:getSegment(t1, t2)

Returns a BezierCurve that corresponds to the curve-segment between t1 and t2
on the original curve.
This commit is contained in:
vrld
2015-03-22 19:22:18 +01:00
parent f7cb16be87
commit f32d770cf6
4 changed files with 64 additions and 0 deletions
+39
View File
@@ -23,6 +23,7 @@
#include "common/Exception.h"
#include <cmath>
#include <algorithm>
using namespace std;
@@ -185,6 +186,44 @@ Vector BezierCurve::evaluate(double t) const
return points[0];
}
BezierCurve* BezierCurve::getSegment(double t1, double t2) const
{
if (t1 < 0 || t2 > 1)
throw Exception("Invalid segment parameters: must be between 0 and 1");
if (t2 <= t1)
throw Exception("Invalid segment parameters: t1 must be smaller than t2");
// First, sudivide the curve at t2, then subdivide the "left"
// sub-curve at t1/t2. The "right" curve is the segment.
vector<Vector> points(controlPoints);
vector<Vector> left, right;
left.reserve(points.size());
right.reserve(points.size());
// first subdivision at t2 (take only the left curve)
for (size_t step = 1; step < points.size(); ++step)
{
left.push_back(points[0]);
for (size_t i = 0; i < points.size() - step; ++i)
points[i] += (points[i+1] - points[i]) * t2; // p_i <- (1-t2)*p_i + t2*p_{i+1}
}
left.push_back(points[0]);
// second subdivion at t1/t2 (take only the right curve)
double s = t1/t2;
for (size_t step = 1; step < left.size(); ++step)
{
right.push_back(left[left.size() - step]);
for (size_t i = 0; i < left.size() - step; ++i)
left[i] += (left[i+1] - left[i]) * s;
}
right.push_back(left[0]);
// control points for right curve were added in reversed order
std::reverse(right.begin(), right.end());
return new BezierCurve(right);
}
vector<Vector> BezierCurve::render(int accuracy) const
{
if (controlPoints.size() < 2)