Android Java 顶点数组?
当我过去为 iPhone 编程时,我使用结构来存储顶点,并使用嵌套的 for 循环进行平铺。 现在在java中我似乎无法找到一种方法来做到这一点。 谁能帮我解决这个问题吗? 谢谢。
When I used to program for the iphone I used structs to store my vertices using a nested for loop for tiling.
Now in java I cannot seem to find a way to do this.
Can anyone help me out on this one?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Java 中没有结构体这样的东西。您当然可以创建自己的
Vertex
类(具有 X 和 Y 坐标的两个值),但我想最简单的事情就是使用内置的 Point 类。There is no such thing as a struct in Java. You could of course create your own
Vertex
class (with two values for the X and Y coordinate), but I quesss the easiest thing would be to just use the build-in Point class.您可以尝试
Buffer
与一些按照您想要的方式打包数据的辅助方法。You might try a
Buffer
with a few helper methods for packing data the way you want.