I'm looking to start using Java Open GL, but I can't find it.
Have you tried JOGL's website?
It looks like their most recent release can be found here, or you can grab a nightly build here.
http://kenai.com/projects/jogl/
–
Alyssaalyssum To get the latest stable version of the new JOGL 2.0 beta, go to http://jogamp.org/deployment/webstart/. The nightly builds are at http://jogamp.org/deployment/autobuilds/master/. The most recent auto build (as of this writing) is at http://jogamp.org/deployment/autobuilds/master/jogl-b242-2010-11-28_23-03-07/. You can see a description of their versioning at http://jogamp.org/wiki/index.php/Jogamp_Versioning_and_Releases.
To get the old JOGL 1.1.1a (the last build before JOGL moved), go to http://download.java.net/media/jogl/builds/archive/jsr-231-1.1.1a/.
I agree that their website is confusing and hard to find the download link.
When you go to their website, click "Current release build (JSR-231 1.1.1)" or just scroll to the very bottom of the page and you'll see the files. Download the corresponding file for whichever system you're using.
Ok. This is what I have found so far: Go to the wiki: http://jogamp.org/jogl/doc/deployment/JOGL-DEPLOYMENT.html
it indicated that there is a demo directory: http://jogamp.org/deployment/webstart/
There are a number of JNLP files here. Pick one at random: http://jogamp.org/deployment/webstart/Gears.jnlp
Open it in the browser. The browser starts up webstart, and webstart installs the 3d extensions and runs the demo. It works, so clearly the libraries are being downloaded - somewhere.
Fine. Let's try it from the command line: $ curl http://jogamp.org/deployment/webstart/Gears.jnlp > Gears.jnlp $ javaws Gears.jnlp
Also fine. Great! The trick now is to work out how to link to those libraries that jws has downloaded.
Well ... as far as I can tell they simply get put in /System/Library/Java/Extensions, and ... drat: "Access restriction: The type DirectionalLight is not accessible due to restriction on required library /System/Library/Java/Extensions/j3dcore.jar"
okeydoke, more to figure out yet.
© 2022 - 2024 — McMap. All rights reserved.