Re: [JAVA3D] making graphs invisible

2000-10-03 Thread J. Lee Dixon
: Shawn Kendall [mailto:[EMAIL PROTECTED]] Sent: Monday, October 02, 2000 7:08 PM To: [EMAIL PROTECTED] Subject: [JAVA3D] making graphs invisible I must be missing this one somewhere in the API.=20 How do you "make" a node and it's sub-graph non-rendered, i.e. = invisible without doing

Re: [JAVA3D] making graphs invisible

2000-10-02 Thread Chien Yang
Beside using Switch node, you can also try the setVisible() method in the RenderingAttributes. - Chien. > X-Accept-Language: en > MIME-Version: 1.0 > Date: Mon, 2 Oct 2000 19:08:11 -0400 > From: Shawn Kendall <[EMAIL PROTECTED]> > Subject: [JAVA3D] making graphs i

Re: [JAVA3D] making graphs invisible

2000-10-02 Thread Doug Gehringer
> I must be missing this one somewhere in the API. > How do you "make" a node and it's sub-graph non-rendered, i.e. invisible > without doing an detach/attach set up? Put the subgraph in a Switch node and then set call Switch.setWhichChild(Switch.CHILD_NONE) when you want to turn off rendering fo

Re: [JAVA3D] making graphs invisible

2000-10-02 Thread David
I always use switch nodes.  You can switch off  children.  Too bad there isn't a setEnable(boolean) method on Node.   Dave Yazel - Original Message - From: Shawn Kendall To: [EMAIL PROTECTED] Sent: Monday, October 02, 2000 7:08 PM Subject: [JAVA3D] making g

[JAVA3D] making graphs invisible

2000-10-02 Thread Shawn Kendall
I must be missing this one somewhere in the API. How do you "make" a node and it's sub-graph non-rendered, i.e. invisible without doing an detach/attach set up? I can't seem to find the right set of calls anywhere, thought it might be easier to ask the list. I'm not talking about transparency her