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.
我想在 android 中绘制一个类似于下图的透明网格立方体:
任何帮助将不胜感激。
如果你熟悉 opengl 3d 编程,这应该很容易实现。这个页面看起来有你需要了解如何做到这一点的一切,通过一些调整你可能会有你的解决方案。对于一般的 opengl 教程,以下页面也是一个参考的好地方。如果您在执行此操作时遇到困难,那么您可以在出现特定问题时跟进。
您可以使用 glDrawArrays() 的 GL_LINES、GL_LINE_LOOP 或 GL_LINE_STRIP 参数来获得类似的线框外观,但这也将显示所有三角形边,而不仅仅是四边形。