[JAVA3D] major memory leak

2003-09-08 Thread Glenn Pinkerton
Hello, I saw some discussion of a major memory leak in java3d, and I think I am running into the same problem. I am currently just creating a swing JFrame with a panel inside it. The panel parents the canvas3d. Here is the constructor for the panel. J3DPanel () { setLayout (new

[JAVA3D] Java 3D FAQ Weekly Posting (08 Sep 2003)

2003-09-08 Thread The Java 3D FAQ
The Java 3D Frequently Asked Questions list for Monday September 8 2003 This is a posting of topics covered in the Java 3D FAQ. The answers to these questions are kept at: http://www.j3d.org/faq Please consult this list and the web site before asking questions on the mailing list. If t

[JAVA3D] Simple problem with appearance and textureattributes

2003-09-08 Thread Ben Moxon
I have a stupid problem here that I just can't remember how to get around. I have my code to apply an appearance to a shape3d, like this: == Appearance aper = new Appearance(); Color3f Black = new Color3f(0f, 0f, 0f);

Re: [JAVA3D] multiple views

2003-09-08 Thread dafna gordon
thanks for the help, postponed dealing with this problem, it does too much trouble. - Original Message - From: "Josh Richmond" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, September 08, 2003 3:32 PM Subject: Re: [JAVA3D] multiple views > Hi Dafna, > > You need to define two

Re: [JAVA3D] multiple views

2003-09-08 Thread Lewis Walker
Title: Message No - think about the language of the thing - you want two different views of the SAME universe. The Universe, after all, by defintion, contains everything - all of your objects.   So - you want to have two ViewPlatform nodes in your unique Universe. The ViewPlatform node enca

Re: [JAVA3D] multiple views

2003-09-08 Thread Josh Richmond
Hi Dafna, You need to define two Views into the same universe. I seem to remember you can't use SimpleUniverse for that purpose. If you look in the archives you should find some sample code. I know I posted some about 3 years ago. josh >>> [EMAIL PROTECTED] 09/08/03 10:21AM >>> Hi all, i want

[JAVA3D] multiple views

2003-09-08 Thread dafna gordon
Hi all,   i want to create another view (a top view) of my scene. i tried to create another simpleUniverse, another canvas3D and another JFrame. but i can't add the same scene (BranchGroup) to two differet simpleUniverses. i got an exception of multiple parent. i also tried to define two canv

[JAVA3D] Load Human VRML Model, find & control selected Joint Nodes: Demo program with Source code

2003-09-08 Thread P. Flavin
Grab a Node from a VRML file & manipulate it in your program. Java3d's Scenegraph & Sun's VRML Loaders allow --- complex 3d objects to be loaded easily, and the Java3d Scenegraph can be searched & traversed and the nodes can be read and manipulated as these programs by Su

[JAVA3D] Load Human VRML Model, find & control selected Joint Nodes: Demo program with Source code

2003-09-08 Thread P. Flavin
Java3d's Scenegraph & Sun's VRML Loaders allow --- complex 3d objects to be loaded easily, and the Java3d Scenegraph can be searched & traversed and the nodes can be read and manipulated as these programs by Sun, Nasa, Selman, and myself demonstrate. | Human VRML model w

[JAVA3D] local rotation possible ? Yes, try Brown's Exploratories Project & Watch as The World Turns and Orbits ( model )

2003-09-08 Thread P. Flavin
You can apply rotations or other transforms on any leaf or branch in the Scenegraph provided you have placed TransformGroups where needed and make your rotations as local or global as you like. local rotation possible ? [ confused by transforms in scenegraph ] - | |