Android Java 顶点数组?

发布于 2024-10-05 00:33:31 字数 97 浏览 3 评论 0原文

当我过去为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

黯淡〆 2024-10-12 00:33:31

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.

橘虞初梦 2024-10-12 00:33:31

您可以尝试 Buffer 与一些按照您想要的方式打包数据的辅助方法。

You might try a Buffer with a few helper methods for packing data the way you want.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文