I am using Eclipse and trying to learn some
Java 3D. I have included the three Java 3D jar files in the libraries build path. The three files are j3dcore.jar, j3dutils.jar, and vecmath.jar. No errors are showing up in the code.
When I run a program, I get the following error:
Exception in
thread "main" java.lang.UnsatisfiedLinkError: no j3dutils 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 com.sun.j3d.utils.timer.J3DTimer$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at com.sun.j3d.utils.timer.J3DTimer.<clinit>(Unknown Source)
at SwingTimerTest.<init>(SwingTimerTest.java:85)
at SwingTimerTest.main(SwingTimerTest.java:194)
This error DOES NOT occur with JCreator.
Any advice would be greatly appreciated.
Thanks,
Adam