Normand Briere
2019-08-26 6266c8a4b2485b29a7d5bcb217460d7aad3e1c4a
GroupLeaf.java
....@@ -14,9 +14,14 @@
1414
1515 GroupLeaf()
1616 {
17
- super("GroupLeaf");
17
+ this("Loop");
18
+ }
19
+
20
+ GroupLeaf(String name)
21
+ {
22
+ super(name);
1823
19
- addChild(new cGroup("Leaf"));
24
+ addChild(new cGroup(name + "Leaf"));
2025 }
2126
2227 Object3D deepCopy()