From 22abd41aace8fb9e15337ae3841fae72aec539e4 Mon Sep 17 00:00:00 2001 From: Jonathan Puckey Date: Sun, 6 Mar 2011 15:52:38 +0100 Subject: [PATCH] Revert changes to BouncingBalls example. --- examples/Scripts/BouncingBalls.html | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/examples/Scripts/BouncingBalls.html b/examples/Scripts/BouncingBalls.html index c270fc2c..01876da6 100644 --- a/examples/Scripts/BouncingBalls.html +++ b/examples/Scripts/BouncingBalls.html @@ -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); },