我有一个我想要生成的正方形中心点的坐标,我所拥有的唯一信息是中心点的位置(例如:4,9)和宽度/高度(例如:10)广场。我想遍历广场的每个像素。
这里的每个区块代表一个循环,黄金是"中心的位置" (我知道它偏离中心,因为它是一个偶数)。 http://i.imgur.com/U5Orrff.png
宽度将始终与高度相同,反之亦然,但它们可以是1-25之间的任何数字。
答案 0 :(得分:1)
你需要的是循环中的循环
int midX = 4; //set this
int midY = 9; //set this
int size = 13; //set this
int _upperLeftX = midX - size/2;
int _upperLeftY = midY - size/2;
for(int y = _upperLeftY; y < size + _upperLeftY; y++) {
for(int x = _upperLeftX; x < size + _upperLeftX; x++) {
//Put your code to create a block here. Take x,y as coordinates
}
}