We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4713b1b commit 966d0e4Copy full SHA for 966d0e4
1 file changed
v3/src/paths/Path.js
@@ -51,7 +51,7 @@ var Path = new Class({
51
// Creates a spline curve starting at the previous end point, using the given parameters
52
splineTo: function (points)
53
{
54
- points.shift(this.getEndPoint());
+ points.unshift(this.getEndPoint());
55
56
return this.add(new SplineCurve(points));
57
},
0 commit comments