Examples: move Smoothing example to Paperjs.org folder.

This commit is contained in:
Jonathan Puckey 2013-03-02 20:59:27 +01:00
parent 3db61a3509
commit 9260717bb8

View file

@ -9,10 +9,11 @@
var width, height, center;
var points = 10;
var smooth = true;
var path = new Path();
var path = new Path({
fillColor: 'black'
});
var mousePos = view.center / 2;
var pathHeight = mousePos.y;
path.fillColor = 'black';
initializePath();
function initializePath() {