Does anyone know if when you use getAllChildren wether that is all
the children of the branchgroup only but not the childrens children and so
one?
example:
BranchGroup bg = new BranchGroup();
bg.setCapability(BranchGroup.ALLOW_CHILDREN_READ);
bg = s.getSceneGroup();
Enumeration enumeration = bg.getAllChildren();
Object tmpObject1 = null;
while (enumeration.hasMoreElements())
{
tmpObject1 = enumeration.nextElement();
if (tmpObject1 instanceof BranchGroup){
}
}
Jack S. Gundrum
Visualization Group
Center for Academic Computing
Penn State University
Email:[EMAIL PROTECTED]
Phone:(814)865-1863
===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JAVA3D-INTEREST". For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".