Re: [JAVA3D] Pop-up window for editing

2001-08-01 Thread Renoir Sewjee
Hi, JDialog is a heavyweight component (like JFrame and JWindow) so it will stay on top of the 3D canvas. A jar file is just a zip file and you can use any zip program to unzip it (I use WinZip). Regards, Renoir -- Renoir Sewjee Software Engineer ISS International (Welkom) Tel: +27 (0)57 912 2

[JAVA3D] Update on links for overlay library

2001-08-01 Thread Will Holcomb
I apologize, I messed up several of the jars that I posted links to yesterday and I just wanted to post that things had been updated and fixed. I have discovered that if I load the page, go to another page and then hit back to return it will reboot my machine. (There is a demo applet on the page a

Re: [JAVA3D] Pop-up window for editing

2001-08-01 Thread Will Holcomb
On Wed, 1 Aug 2001, Lan Wu-Cavener wrote: > I read the Overlays and was not able to look at source code (unable to > unjar the file, my unix machine is not hooked up to the net yet. Does any > one know how I can un jar the file on PC? ). If you have unix eperience the jar command comes bundled w

Re: [JAVA3D] BoundingSphere Bug?

2001-08-01 Thread David Weir
Umm, ok, it was user error - my line objects had per-vertex normal flag set without normals! === To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff JAVA3D-INTEREST". For general

Re: [JAVA3D] Pop-up window for editing

2001-08-01 Thread Pierce, Gregory (TBS)
Title: RE: [JAVA3D] Pop-up window for editing Rename the .jar file to a .zip file and use Winzip or similar on it. > -Original Message- > From: Lan Wu-Cavener [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, August 01, 2001 5:11 PM > To: [EMAIL PROTECTED] > Subject: [JAVA3D] Pop-up wind

Re: [JAVA3D] Pop-up window for editing

2001-08-01 Thread Kevin Williams
To unjar on a PC you can use the java jar command with the -x option. You can also use Winzip if you have that to open the jar file and extract out the info. Kevin > -Original Message- > From: Discussion list for Java 3D API > [mailto:[EMAIL PROTECTED]]On Behalf Of Lan Wu-Cavener > Sent

Re: [JAVA3D] Pop-up window for editing

2001-08-01 Thread Graham Cox
- Original Message - From: Lan Wu-Cavener <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 01, 2001 10:11 PM Subject: [JAVA3D] Pop-up window for editing > I read the Overlays and was not able to look at source code (unable to > unjar the file, my unix machine is not ho

Re: [JAVA3D] plz Explain!

2001-08-01 Thread Pierce, Gregory (TBS)
Title: RE: [JAVA3D] plz Explain! Not to get totally off topic. This isn't exclusive to Java. The Win32 API handles things in the same manner through the WM_LBUTTONUP, WM_LBUTTONDOWN events in the message queue. Handling double clicks is really relative because it depends on how much time betwe

[JAVA3D] Pop-up window for editing

2001-08-01 Thread Lan Wu-Cavener
Hi, everyone: I need a pop-up window or dialog box to display the properties of 3D objects and also provide editing functions. I heard that lightweight component will not stay on top of 3D. Then what are the options there for this purpose? I read the Overlays and was not able to look at source c

Re: [JAVA3D] plz Explain!

2001-08-01 Thread Scott Rutlege
Most ui frameworks sidestep this issue by sending click/double-click pairs, then saying that interfaces should be designed so that any actions you perform should work with that in mind. For example, in Windows a single-click selects an icon, and a double-click opens the icon (ok, object). So the

[JAVA3D] Component layout

2001-08-01 Thread Frank Bellegarde
Hi all, This isn't java3d but still I need it. I created a JDialog and added its components without specifying a layout because I couldn't get one to do as I wanted. The problem is that it seems that the last component added to the dialog takes the whole of it, regardless of the bounds that are s

Re: [JAVA3D] picking bug in parallel projection mode

2001-08-01 Thread Chien Yang
Todda, Be sure you aren't using PickRay to pick lines/points. - Chien Yang > Delivered-To: [EMAIL PROTECTED] > X-Originating-IP: [194.248.236.50] > Mime-Version: 1.0 > X-OriginalArrivalTime: 31 Jul 2001 08:42:21.0120 (UTC) FILETIME=[B68A6400:01C1199C] > Date: Tue, 31 Jul 2001 10:42:

Re: [JAVA3D] plz Explain!

2001-08-01 Thread Kasparian, Raffi J.
Yes, I have been annoyed with this too. I haven't tried to figure out a workaround. I don't know why Java handles things this way -- maybe so that you will receive a click event every time the mouse is pressed (in case your program doesn't use double-clicks). The idea of delaying the processing of

Re: [JAVA3D] Some maths... help?

2001-08-01 Thread Jason Taylor
Will wrote: >On Wed, 1 Aug 2001, Jason Taylor wrote: >> There is a cube with 100*100*100 points in it. >I am trying to understand what exactly your domain is. Do you have >1,000,000 points randomly distributed in 3-space? What is the cube exactly? >Just a bounding box for your points? I know not

[JAVA3D] PickMouseBehavior

2001-08-01 Thread Lan Wu-Cavener
Hi, all: I have written a WalkViewerBehavior extends Behavior for my 3D scene, which handles the navigation through the scene. Now I want to add a extended PickMouseBehavior to pick the objects in the scene. The problem I have now is that the extended PickMouseBehavior does not process the mouse

Re: [JAVA3D] Some maths... help?

2001-08-01 Thread Will Holcomb
I am trying to figure out your exact question, so to clarify: On Wed, 1 Aug 2001, Jason Taylor wrote: > There is a cube with 100*100*100 points in it. I am trying to understand what exactly your domain is. Do you have 1,000,000 points randomly ditributed in 3-space? What is the cube exactly? Ju

Re: [JAVA3D] Motion Capture & Java3D

2001-08-01 Thread Fergus Murray
Francesco, It would be great to have a database of downloadable motion-captured animation data available. What form are you storing the data in? You might find it useful to talk to some H-Anim (humanoid animation) people about this, assuming it is humanoids whose motion you are capturing... v

Re: [JAVA3D] click count (was: plz Explain!)

2001-08-01 Thread matthias sweertvaegher
hello, maybe I understand your problem wrong but I really don't see a difficulty say your processStimulus looks like this : public void processStimulus(Enumeration aCriteria) { WakeupOnAWTEvent crit = (WakeupOnAWTEvent)aCriteria.nextElement(); java.awt.AWTEvent[] events =

Re: [JAVA3D] plz Explain!

2001-08-01 Thread Corysia Taware
I agree with Bob that a state variable is the way to go. But instead of threads, I'd suggest diffing the time between clicks. If the difference is less than 500ms (or some user-defined time), then it's a double-click. And, Ashish, please come up with a more informative subject line - Ori

[JAVA3D] Some maths... help?

2001-08-01 Thread Jason Taylor
Thought I'd post this here as well as the newsgroup to increase my chances! :) Hi, Yet to find a nice way to do this maths and now that I'm programming it into a Java3D program I was wondering if there was a simple & fast method to do it? Basic problem is this; There is a cube with 100*100*100

Re: [JAVA3D] rebooting

2001-08-01 Thread Nathan Bower
heh, I suppose Im pretty lucky then... N > for some chipsets running under Windows 2000 and can > result in the machine becoming non responsive and > resulting in the reinstall of Windows 2000. Under 6 > systems tested, only 1 was very happy with the > change to an ACPI-less state. __

Re: [JAVA3D] installation problem

2001-08-01 Thread Thomas Gilbert Giusepe
Hi Corysia, I really have the folder "..converter/classes_BAK", but I am working with visual cafe and in this way it doesn't seems to see the classes_BAK, and instead of file_plugin.html it generates autogen_file.html. Do you have some idea how to setup it to work automatically with visual cafe e

[JAVA3D] RE : window resize policy

2001-08-01 Thread matthias sweertvaegher
hey mark thanks for the reply the resulting policy isn't quite what I wanted but at least it's a bit better :) when i set the windoweyepointpolicy to relative_to_window i find it even more better ;) thanks a lot for the hints greets, mattie >Unfortunately, there are undocumented dependencies b