--- "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();
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
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
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