You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the example shows using the Math Operator, not the Math Operator Function. When one is converting from PaperScript to JavaScript this is important. I think line 3 of the example should read...
var result = point1.add( point2 );
instead of the current...
var result = point1 + point2;
The text was updated successfully, but these errors were encountered:
The doc is very good. Well above average for an open source project. I thought this might help some folks...
At...
http://paperjs.org/reference/point/#add-point
the example shows using the Math Operator, not the Math Operator Function. When one is converting from PaperScript to JavaScript this is important. I think line 3 of the example should read...
var result = point1.add( point2 );
instead of the current...
var result = point1 + point2;
The text was updated successfully, but these errors were encountered: