Re: [JAVA3D] Running Java3D in Multipipe

2002-11-21 Thread Mark Hood
> Date: Thu, 21 Nov 2002 13:41:54 -0500 > From: Mojtaba <[EMAIL PROTECTED]> > > As mentioned in my last email, we have Java3D working on SGI ONYX > machines for a CAVE configuration. However, we've only been able to work > with SINGLE pipe. It would be a great improvement if we could run o

Re: [JAVA3D] Running Java3D in Multipipe

2002-11-21 Thread Paul Gordon
You can see how this is done at the top of the ConfiguredUniverse file: // NOTE: The GraphicsDevice order in the array is specific to the local // site and display system. These assignments may need to be adjusted. // (NewScreen left1) (NewScreen center 0) (NewScreen right 2) (NewScreen fl

Re: [JAVA3D] Running Java3D in Multipipe

2002-11-21 Thread Jack Gundrum
GraphicsDevice[] allScreenDevices = GraphicsEnvironment.getLocalGraphicsEnvironment().getScreenDevices(); System.out.println("Found " + allScreenDevices.length + " screen devices"); for (int i = 0; i < setScreens; i++) {graphicsDevices[i] = allScreenDevices[i];} At 01:41 PM 11/21/2002 -0500, you

[JAVA3D] Running Java3D in Multipipe

2002-11-21 Thread Mojtaba
Hello, As mentioned in my last email, we have Java3D working on SGI ONYX machines for a CAVE configuration. However, we've only been able to work with SINGLE pipe. It would be a great improvement if we could run our Java3D application in MULTIPIPE mode. Does anyone have any idea on how to do this?