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);
},