“if you cut and paste the actual error”
OK, I got GLEEM to compile, typo =:<
now for demos/util
my compile call is:
<jaba_bin_dir>/javac -source 1.4 -classpath “${CLASSPATH};c:\jogl;c;\jogl\jogl.jar” *.java
and the errors are:
ObjReader.java:46: package net.java.games.jogl.util does not exist
import net.java.games.jogl.util.*;
^
ObjReader.java:305: cannot resolve symbol
symbol : variable BufferUtils
location: class demos.util.ObjReader
vertices = BufferUtils.newFloatBuffer(newVertices.size());
^
ObjReader.java:307: cannot resolve symbol
symbol : variable BufferUtils
location: class demos.util.ObjReader
normals = BufferUtils.newFloatBuffer(newVertexNormals.size());
^
3 errors
I’ve used the compile line above for GLEEM and Gears.java and Gears runs fine although I am not sure if GLEEM will work with the infinite shadow demo I want see run.