removed old test directory. added getter setter overloaders to Shape. Began redoing documentation on Node

This commit is contained in:
Eric Rowell
2013-12-13 21:33:40 -08:00
parent 9accc00cf3
commit b273c29aee
10 changed files with 175 additions and 4049 deletions

View File

@@ -1,3 +1,5 @@
console.log('test')
var stage;
var circlesLayer;
var circles;
@@ -67,7 +69,7 @@
var x = Math.random() * width;
var y = Math.random() * height;
if (VERSION === 'new') {
circles[i].setPosition({x: x, y: y});
circles[i].position({x: x, y: y});
}
else {
circles[i].setPosition(x, y);