java - Installing Java3D on Eclipse -


sorry in advance if bad question, can't seem find recent enough tutorial on how install java3d on eclipse 3.6.0 mac osx 10.6.6. if knows tutorial is, or if can give me instructions, please so. thanks!

to add jar's specific project's classpath:

  1. right-click (or cmd-click on mac?) project in project explorer view , choose properties > java build path > libraries.
  2. add folder "\system\library\java\extensions" clicking "add external class folder..." button

edit:

i suggest following, given that

  • you have jdk (version 1.5.0 or higher) installed
  • you have eclipse java or java ee developers installed (not eclipse classic example)
  • you can build vanilla, helloworld java application already

basically, sounds might not have added java 3d api's jre. download linked in original question contains file named readme-unzip.html, obtained following instructions from:

  1. download java3d-1_5_1-xxx.zip temporary directory, example, "/tmp"

  2. unzip java3d-1_5_1-xxx.zip "/tmp" follows:

        cd /tmp     unzip java3d-1_5_1-*.zip 

    this create "java3d-1_5_1-xxx" subdirectory in /tmp downloaded files can found. file need manual installation "j3d-jre.zip".

  3. unzip java 3d 1.5.1 "jre" directory of jdk. example, if jdk in "/usr/java/jdk1.6.0_01/jre", following:

        cd /usr/java/jdk1.6.0_01/jre     unzip /tmp/java3d-1_5_1-*/j3d-jre.zip 

    verify j3dcore.jar, j3dutils.jar, , vecmath.jar files end in "/usr/java/jdk1.6.0_01/jre/lib/ext"


Comments

Popular posts from this blog

javascript - Enclosure Memory Copies -

php - Replacing tags in braces, even nested tags, with regex -