Path#smooth() example: select path using fullySelected instead of selected, so we can see its handles.

This commit is contained in:
Jonathan Puckey 2011-11-12 16:45:33 +01:00
parent d631288dc7
commit 3ac171a304

View file

@ -43,7 +43,7 @@ var PathItem = this.PathItem = Item.extend(/** @lends PathItem# */{
* path.strokeColor = 'black';
*
* // Select the path, so we can see its handles:
* path.selected = true;
* path.fullySelected = true;
*
* // Create a copy of the path and move it 100pt to the right:
* var copy = path.clone();