Revert changes to BouncingBalls example.

This commit is contained in:
Jonathan Puckey 2011-03-06 15:52:38 +01:00
parent 9f1bf92ecd
commit 22abd41aac

View file

@ -45,8 +45,6 @@
circlePath.fillColor.gradient.type = 'radial';
var symbol = new Symbol(circlePath);
var group = new Group();
var Ball = Base.extend({
@ -63,8 +61,7 @@
this.radius = 50 * Math.random() + 10;
this.item = new PlacedSymbol(symbol);
this.item.position = point;
this.item.rotate(30);
this.item.scale(this.radius / 10, 0.6);
this.item.scale(this.radius / 10);
group.appendTop(this.item);
},