Normand Briere
2019-09-17 d248db5fc21c4b0ab24968974e5e590f413ef8fc
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()