Package com.sun.j3d does not exist (Linux - Fedora Core 6 - jdk 5.0)
Here's the thing.
I realize it's probably a classpath issue, but I don't know where to put the libraries. Compiling non-3d code works fine, which leads me to believe that running the j3d installer in the right place ought to put the libraries in the right place and let me use them. Clearly this is not the case.
Now I've tried to fiddle with the classpath, specifically I've put this into my .bash_profile:
CLASSPATH=.:$CLASSPATH:$HOME/Libraries/ext:$HOME/Libraries/i386
export CLASSPATH
And stored the jars in a libraries folder on my home directory
Odd thing: echo $CLASSPATH sends out empty, like CLASSPATH isn't even defined. How do I fix that? And if that's true, why is the regular javac working?

