1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
| class cGroup extends Composite
| {
| static final long serialVersionUID = -9091094008965972116L;
|
| boolean transientlink;
|
| static int globalcount = 1;
|
| cGroup()
| {
| this("Group" + globalcount++);
| }
|
| cGroup(String name)
| {
| super(name);
|
| count = 1000;
|
| //new Exception().printStackTrace();
| }
|
| Object3D deepCopy()
| {
| Composite comp = new cGroup();
| deepCopySelf(comp);
| return comp;
| }
| }
|
|