in reply to Re^2: octtree using hashes
in thread octtree using hashes
Why do you "concatenate" objects?
I would assume that you keep a list of nodes, which is not done with the string concatenation operator ".", but by using push on an array(ref).
Also, the idea behind an octree is to have a hierarchical organisation (a tree), so that you don't have to check all octants but ideally only the top-level octant and not even all octants that actually contain the object(s) you want to check for collision.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: octtree using hashes
by holyghost (Beadle) on Nov 09, 2017 at 12:01 UTC |