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.
与えられた場合、 1 だけオフセットした p に相対的な境界点p(0,0)を取得するにはどうすればよいですか。points{(0,1),(1,1),(1,0),(1,-1),(0,-1),(-1,-1),(-1,0),(-1,1)}
p(0,0)
points{(0,1),(1,1),(1,0),(1,-1),(0,-1),(-1,-1),(-1,0),(-1,1)}
for(x = p.x -1; x <= p.x + 1; x++) { for(y = p.y -1; y <= p.y + 1; y++) { // Do some stuff with each p } }
汎用コードはこちら。プログラミング言語とポイントの保存方法を変更します。