I am having a problem with getting eclipse to recognize the jogl library. I have it installed in /Library/Java/Extensions along with the native jnilibs. Code will compile fine, so I think this is an eclipse issue, as the import statement isn’t being recognized:
import net.java.games.jogl.*;
has “net” getting that friendly red x and any classes from that library aren’t recognized either. Other libraries like biojava i have installed in the Extensions folder are recognized ok by eclipse so that import statements work and code autocompletion works. I’ve tried explicitly adding jogl.jar as an external jar via the project properties build path tab, but then it just complains that its a duplicate.
I’m wondering what I should do to get eclipse and jogl cooperating.
You are using the OLD package.
I think it’s now something like javax.media.opengl.*
See the thread somewhere in these forums about converting to the JSR 231 version.
duh. awesome, thanks for the response… i didnt know 231 was active yet. sorry for the dumb question.