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; } }