Re: [JAVA3D] Multiple Parent Exception:

2003-01-08 Thread Brandon
--- "Brobbey,Isaac (neuron)" <[EMAIL PROTECTED]> wrote: > Dear All: > > i have a branch Group with three children. All the > children are also branch > Groups which also contains 3D graphs like; > > BranchGroup createSceneGraph(Vector hix) > { > BranchGroup objRoot = new BranchGroup();

[JAVA3D] Multiple Parent Exception:

2003-01-08 Thread Brobbey,Isaac (neuron)
Dear All: i have a branch Group with three children. All the children are also branch Groups which also contains 3D graphs like; BranchGroup createSceneGraph(Vector hix) { BranchGroup objRoot = new BranchGroup(); objRoot.setCapability(BranchGroup.ALLOW_DETACH); objRoot

Re: [JAVA3D] Multiple Parent Exception

2001-02-21 Thread Adriano Cavalcanti Silva
Karthik, This simply means that you've added this object to another parent already. For example, if you have: TransformGroup tgA = new TransformGroup(); BranchGroup bgA = new BranchGroup(); BranchGroup bgB = new BranchGroup(); bgA.addChild( tgA ); bg

[JAVA3D] Multiple Parent Exception

2001-02-21 Thread K.R.Karthikeyan
  Hi All,        I have a createSceneGraph() method . In that method i build the whole structure. Inside that method i add a behavior object. This behavior is my own class which is a sub class of the Behaviour class. On click of some button I call this createSceneGraph() method again. So wat