GroupLeaf.java
.. .. @@ -14,9 +14,14 @@ 14 14 15 15 GroupLeaf() 16 16 { 17 - super("GroupLeaf");17 + this("Loop");18 + }19 +20 + GroupLeaf(String name)21 + {22 + super(name);18 23 19 - addChild(new cGroup("Leaf"));24 + addChild(new cGroup(name + "Leaf"));20 25 } 21 26 22 27 Object3D deepCopy()