[go: nahoru, domu]

Skip to content

Commit

Permalink
Update OctreeHelper.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
vanruesc committed Jun 4, 2023
1 parent d729871 commit 5a71323
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/OctreeHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export class OctreeHelper extends Group {
const positions = new Float32Array(vertexCount * 3);

// Continue where the previous run left off.
for(let c = 0, d = 0, result = iterator.next(); result.done !== undefined && !result.done && i < l;) {
for(let c = 0, d = 0, result = iterator.next(); result.done !== true && i < l;) {

const octant = result.value;
const min = octant.min;
Expand Down

0 comments on commit 5a71323

Please sign in to comment.