Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用以下函数绘制了多个 3d 立方体对象:
gl.glDrawArrays(GL10.GL_TRIANGLE_STRIP, 0, vertexCount);
现在,我也必须在上面画网格线。所以你能告诉我如何使用 opengl 在上面画这些网格线(框)。
谢谢。
如果我理解正确,你想画线吗?如果是这样,您所要做的就是像往常一样创建顶点并使用GL10.GL_LINES而不是GL10.GL_TRIANGLES(或 triangle_strip)来绘制它们。 您可以通过调用更改线条的宽度glLineWidth()
GL10.GL_LINES
GL10.GL_TRIANGLES
glLineWidth()