Problem of compilation of java3d sources
Posted by bastringue on Nov 17, 2014; 1:36pm
URL: https://forum.jogamp.org/Problem-of-compilation-of-java3d-sources-tp4033563.html
Hello,
I have downloaded the 3 packages (j3d-core, j3d-core-utils,vecmath) in netbeans 8.0.1/Windows-Vista/JDK8.
I try now to re-build java3D project like explained in the file j3d-core/README-build.html.
So, I have started ton compile vecmath and it's OK (I got vecmath.jar).
Next I try to compile j3d-core (including the vecmath.jar I have just built) and it fails in Font3D.java at these two lines of import (Netbeans complains that the package com.sun.j3d.utils.geometry does not exist) :
import com.sun.j3d.utils.geometry.GeometryInfo;
import com.sun.j3d.utils.geometry.NormalGenerator;
So I have imagined that I needed to compile first the j3d-core-utils. I tried but the problem is that I get an error on the line :
import javax.media.j3d.AudioDevice;
It complains now about a package which is supposed to be built in j3d-core !
So it looks like if j3d-core needed j3d-core-utils and the contrary as well : I am blocked !
Thank you for some enlightment...