Search Results
| Search type | Search syntax |
|---|---|
| Tags | [tag] |
| Exact | "words here" |
| Author | user:1234 user:me (yours) |
| Score | score:3 (3+) score:0 (none) |
| Answers | answers:3 (3+) answers:0 (none) isaccepted:yes hasaccepted:no inquestion:1234 |
| Views | views:250 |
| Code | code:"if (foo != bar)" |
| Sections | title:apples body:"apples oranges" |
| URL | url:"*.example.com" |
| Saves | in:saves |
| Status | closed:yes duplicate:no migrated:no wiki:no |
| Types | is:question is:answer |
| Exclude | -[tag] -apples |
| For more details on advanced search visit our help page | |
Results tagged with spatial-partitioning
Search options not deleted user 181523
Spatial partitioning refers to dividing up some space (such as the game world) into regions with the intent to efficiently search or traverse those regions or the objects within those regions.
0 votes
0 answers
56 views
Fast way to compare a large set of positions, rotations, velocities, etc. during runtime (po...
The Goal I'm working on a vr gesture recognition system. Normally these systems are dependent on "drawn" gestures, but I want something that compares position, rotation, velocity, angular velocity, et …
1 vote
1 answer
114 views
How to rotate a 3d grid?
I have a spatial hashing grid that's mapped out like keyX = Math.floor(position.x/cellsize) + 1; keyY = Math.floor(position.y/cellsize) + 1; keyZ = Math.floor(position.z/cellsize) + 1; keyFinal = (ke …