1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-08-21 07:51:49 +02:00
This commit is contained in:
Pomax
2016-01-05 23:13:27 -08:00
parent f5b75693e0
commit f79fb75769
2 changed files with 8 additions and 2 deletions

View File

@@ -219,7 +219,7 @@ var Graphic = React.createClass({
setCurve: function(c) {
var pts = [];
c = Array.from(arguments);
c = Array.prototype.slice.call(arguments);
c.forEach(nc => {
pts = pts.concat(nc.points);
});