Change Curve#[getPoint / getTangent / getNormal](t) to #[getPoint / getTangent / getNormal](offset, isParamter).

Keep deprecated versions around for now.
This commit is contained in:
Jürg Lehni 2013-01-28 16:30:28 -08:00
parent e75ee18de1
commit 1a438b8b9b
5 changed files with 99 additions and 85 deletions

View file

@ -41,7 +41,7 @@
var t = iteratively
? curve.getParameterAt(step, prev)
: curve.getParameterAt(pos);
var point = curve.getPoint(t);
var point = curve.getPointAt(t, true);
var circle = new Path.Circle(point, step / 2);
circle.strokeColor = 'red';
if (remove)