[orx-hash-grid] Add point owners

This commit is contained in:
Edwin Jakobs
2022-08-26 10:34:55 +02:00
parent 92c235b957
commit e8619e402f
2 changed files with 14 additions and 11 deletions

View File

@@ -56,7 +56,7 @@ fun poissonDiskSampling(
for (ohg in obstacleHashGrids) {
for (point in ohg.points()) {
queue.add(Pair(point, ohg.radius))
queue.add(Pair(point.first, ohg.radius))
}
}