问题描述
我有一个通过 OpenGL 绘制三角形的函数
I have a function that draws triangles through OpenGL
我通过按下一个按钮来绘制两个三角形(函数 on_drawMapPushButton_clicked()).
I draw two triangles by pressing a button (function on_drawMapPushButton_clicked()).
然后我画一个放置在这些三角形上方的球体.现在我看到,那个球体正确地绘制在第一个三角形上,但第二个三角形绘制在球体上,反之亦然.
Then i draw a sphere that placed above these triangles. And now i see, that sphere is drawed correctly over first triangle, but second triangle drawed over the sphere and not vice versa.
如果我第二次按下按钮,球体就会正确地绘制在第一个和第二个三角形上.
If i press the button second time, then spehere is drawed correctly over first and second triangles.
当我第三次按下按钮时,第二个三角形再次绘制在球体上.
When i press the button third time, then second triangle drawed over the sphere again.
当我第四次按下按钮时,球体在第一个和第二个三角形上正确绘制,依此类推.
When i press the button fourth time, then spehere is drawed correctly over first and second triangles and so on.
如果我在 sphereMesh QPhongMaterial 中使用 QPhongMaterial 而不是 QPhongAlphaMaterial,那么总是在第一个和第二个三角形上正确绘制球体.喜欢它必须如此.
If i use in sphereMesh QPhongMaterial instead of QPhongAlphaMaterial, then spehere is drawed correctly over first and second triangles always. Like it must to be.
我不明白我做错了什么让我的球体总是在三角形上绘制.
I can't understand what i do wrong to get my sphere is drawed always over the triangles.
代码,绘制透明球体:
函数 drawTriangles:
按下按钮处理程序 on_drawMapPushButton_clicked():
地图清除函数clearMap():
推荐答案
我的错误是我错误地创建和删除了三角形和球体实体的顺序.
My mistake was that i did wrong order of creating and deletion of Triangles and Sphere entities.
在伪代码中正确的顺序如下:
In pseudo code right order is as follows:
这篇关于Qt3d.在三角形上绘制透明的 QSphereMesh的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!