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.
我正在为我的世界编写一个模组,遇到了一个令人困惑的数学问题。我想找到中心块周围所有块的 ID。为此,我想遍历一个 3x3 的方块并返回我想要的方块。
我必须使用的参数是 X、Y 和 Z 坐标。我猜最好的选择是使用 3 个 for 循环,每个轴一个,对吧?
for(int i = 0; i < 3; i++){ for(int j = 0; j < 3; j++){ for(int k = 0; k < 3; k++){ //do something } } }