From 89b8864b1317721c6bdfc3b48517be045d5e3d1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Mon, 24 Dec 2012 01:13:18 +0100 Subject: [PATCH] Fix PhyllotaxisRaster example. --- examples/Rasters/PhyllotaxisRaster.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Rasters/PhyllotaxisRaster.html b/examples/Rasters/PhyllotaxisRaster.html index f6a133c5..ae9210dc 100644 --- a/examples/Rasters/PhyllotaxisRaster.html +++ b/examples/Rasters/PhyllotaxisRaster.html @@ -28,6 +28,7 @@ // Create the group of circle shaped paths and scale it up a bit: var group = createPhyllotaxis(values.amount); + group.transformContent = true; group.scale(3); function createPhyllotaxis(amount) { @@ -81,7 +82,6 @@ group.position += delta; // Rotate the group of paths by 1 degree: group.rotate(1); - group.apply(); // Rotate each path in the group by 2 degrees: for (var i = 0, l = group.children.length; i < l; i++) { group.children[i].rotate(2);