用于java的opengl(jogl)
我使用以下方法将 OpenGL 插件添加到我的 IDE(netbeans) 中:
工具 -> 插件 -> 下载 -> 添加插件
但我无法将其导入到我的程序中;
import javax.media.opengl.GL;
我该怎么做?
编辑
当我想在页面上安装插件时
:请求插件编辑器库 版本 >= 1.29.2.8.2(发布 版本 1) 但只有 2.10.2.10.2 ( 与 1) 不同的发行版本是 成立。下面的插件是 受影响:GLSL 编辑器
I added OpenGL plugin to my IDE(netbeans) using:
Tools->Plugins->Downloaded->Add plugins
But I can't import it to my program;
import javax.media.opengl.GL;
How should I do this?
Edit
while I want to install the plugin on a page write:
The plugin Editor Library is requested
in version >= 1.29.2.8.2 (release
version 1) but only 2.10.2.10.2 (of
release version different from 1) was
found. The following plugin is
affected: GLSL editor
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不应该像插件一样为您的项目添加库。
像这样添加它:
右键单击您的项目>属性>图书馆>添加 JAR/文件夹
应该可以解决问题。之后您可能想刷新并重建您的项目,但我认为没有必要。
You shouldn't add a library for your project as if it were a plugin.
Add it like this:
Right click on your project > Properties > Libraries > Add JAR/Folder
That should do the trick. You may want to refresh and rebuild your project after that, but I don't think it's necessary.