not good but great

プログラミング、アート、映画・本の感想について書きます。

2014-05-14から1日間の記事一覧

Paper.jsでpathのpositionを使って移動させたら半分だけ動いた

var path = new Path({ strokeColor: 'red' }); console.log(path.position);//{ x: 0, y: 0 } path.add(new Point(30, 75)); console.log(path.position);//{ x: 30, y: 75 } path.lineTo(new Point(path.position.x + 10, path.position.y + 20)); console…