从二维字段上的索引获取位置数据
假设我有三个变量(在 2D 字段上):
NumSquares, WindowSize(X和Y都有这个值), Index
例如,如果 NumSquares 为 8,WindowSize 为 256,Index 为 64;从这些变量中获取位置数据的算法会是什么样子?
Say I had three variables (On a 2D-field):
NumSquares,
WindowSize (Both X and Y has this value),
Index
So if, for example, NumSquares were 8, WindowSize 256 and Index was at 64; How would the algorithm to get positional data out of these variables look?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设“位置数据”指的是网格上的坐标。索引表示瓦片在线性化数组中的位置,由公式 X + width * Y 计算得出。然后:
我不确定您使用的是什么语言,所以只是为了确定:% 是模数,/ 在这种情况下是整数除法。
I assume that by "positional data" you mean coordinates on the grid. And index means position of the tile in linearized array calculated with formula
X + width * Y
. Then:I'm not sure what language you are working in, so just to be sure: % is modulo, / is in this context integer division.