Installing Java3D on Eclipse

Posted by Matt on Stack Overflow See other posts from Stack Overflow or by Matt
Published on 2010-12-29T08:13:09Z Indexed on 2010/12/29 9:54 UTC
Read the original article Hit count: 563

Filed under:
|
|
|
|

I'm trying to use Java3D in my project. This is the error I receive:

29-Dec-2010 1:01:29 AM javax.media.j3d.NativePipeline getSupportedOglVendor
SEVERE: java.lang.UnsatisfiedLinkError: no j3dcore-ogl-chk in java.library.path
Exception in thread "main" java.lang.UnsatisfiedLinkError: no j3dcore-d3d in java.library.path
 at java.lang.ClassLoader.loadLibrary(Unknown Source)
 at java.lang.Runtime.loadLibrary0(Unknown Source)
 at java.lang.System.loadLibrary(Unknown Source)
 at javax.media.j3d.NativePipeline$1.run(NativePipeline.java:189)
 at java.security.AccessController.doPrivileged(Native Method)
 at javax.media.j3d.NativePipeline.loadLibrary(NativePipeline.java:180)
 at javax.media.j3d.NativePipeline.loadLibraries(NativePipeline.java:137)
 at javax.media.j3d.MasterControl.loadLibraries(MasterControl.java:948)
 at javax.media.j3d.VirtualUniverse.<clinit>(VirtualUniverse.java:280)
 at World.<init>(World.java:10)
 at Start.main(Start.java:12)

I have copied the .jar files into my project's lib folder and linked them in Project -> Properties -> Add Jar File. There was also a .dll file in the Java3D download that I haven't touched or included in any way. What am I missing?

© Stack Overflow or respective owner

Related posts about java

Related posts about eclipse