Renamed BezierCurve:eval to BezierCurve:evaluate (resolves issue #722)

This commit is contained in:
Alex Szpakowski
2013-09-23 20:40:58 -03:00
parent b36d643570
commit 06f2ec8e31
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -97,7 +97,7 @@ public:
* Evaluates the curve at time t.
* @param t Curve parameter, must satisfy 0 <= t <= 1.
**/
Vector eval(double t) const;
Vector evaluate(double t) const;
/**
* Renders the curve by subdivision.