将网格表示为对象
用对象来表示网格的合理方法是什么? 这是二维图形编程练习的一部分,其中网格的中心是“我”。
该对象需要可扩展至 20,20。
因此,如果我有一个 3,3 网格,我需要知道我在网格 1,1(中心)中,而 0,0 位于右下角。如果我有一个 5,5 的网格,我需要知道 2,2 是中心,0,0 是中心。
What's reasonable way to represent a grid in terms of an object?
It's part of a two dimensional graphic programming exercise where at the center of the grid is "me".
The object needs to be scalable up to 20,20.
So if I have a 3,3 grid I need to know that I am in grid 1,1 (center) and that 0,0 is lower right. And if I have an grid of 5,5 I need to know that 2,2 is the center and 0,0 is the center.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您需要降低网格的复杂性和另一种顺序,您可以使用空间填充曲线,例如 z 曲线、希尔伯特曲线、皮亚诺曲线。
If you need a reduction of the complexity and another order of the grid you can use space-filling-curve like a z-curve, a hilbert-curve, a peano-curve.