Java Jogl 小程序绘制不工作?
我的 Jogl 小程序屏幕是空白的。 我的绘画代码有这个:
public void paint(Graphics g){
canvas.update(g);
}
如果我添加 g.fillRect(0,0,50,50); 它会绘制填充的矩形,但仍然不是 Jogl 的东西。
My jogl applet screen is blank. I have this for my paint code:
public void paint(Graphics g){
canvas.update(g);
}
if I add g.fillRect(0,0,50,50); to it it'll draw the filled rect, but still not the jogl stuff.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不太清楚你的程序的其余部分是什么样的。 然而,您应该意识到 JOGL 组件不像其他组件那样绘制;它是一个组件。 换句话说,如果此代码位于 GLAutoDrawable 的实例(即 GLJPanel 或 GLCanvas)上,那么它不会做任何有用的事情。
您需要做的是创建一个 GLEventListener 并将其附加到 GLAutoDrawable。 然后,您需要使用绘制 3D 场景的代码来实现
display (GLDrawable drawable)
。本教程对于入门很有用。
I'm not exactly clear what the rest of your program looks like. However you should be aware that JOGL components don't draw like other components; in other words if this code is on an instance of GLAutoDrawable (i.e. GLJPanel or GLCanvas) then it won't do anything useful.
What you need to do is create a GLEventListener and attach it to the GLAutoDrawable. Then you need to implement
display (GLDrawable drawable)
with code that draws your 3D scene.This tutorial is useful in getting you started.