Tagged Questions
The space-partitioning tag has no wiki summary.
12
votes
1answer
284 views
Partitioning big rectangle to small ones (2D Packing)
I need algorithm which splits big static sized rectangle to small ones. A perfect implementation for me look like this:
struct RECT
{
int l,t,r,b;
};
class BigRect
{
public:
// width and height ...
12
votes
6answers
6k views
When to use Binary Space Partitioning, Quadtree, Octree?
I have recently learned about binary space partitioning trees and their application to 3d graphics and collision detection. I have also briefly perused material relating to quadtrees and octrees. ...
9
votes
8answers
450 views
Space partitioning algorithm
I have a set of points which are contained within the rectangle. I'd like to split the rectangles into subrectangles based on point density (giving a number of subrectangles or desired density, ...
7
votes
3answers
227 views
Binary Space Partitioning Data Structure For Donut 2D Space
I have a 2D map which wraps at the edges. So if you move off the right edge you will reappear at the left side of the map. Likewise with the three other edges.
This is inheritable a problem for the ...
4
votes
2answers
127 views
How to perform spatial partitioning in n-dimensions?
I'm trying to design an implementation of Vector Quantization as a c++ template class that can handle different types and dimensions of vectors (e.g. 16 dimension vectors of bytes, or 4d vectors of ...
4
votes
2answers
650 views
How does space partitioning algorithm for finding nearest neighbors work?
For finding the nearest neighbor, Space Partitioning is one of the algorithms. How does it work?
Suppose I have a 2D set of points (x and y coordinates), and I am given a point (a,b). How would this ...
3
votes
5answers
168 views
Thousands of rays intersections with Triangles in 3D space
There are thousands of rays and triangles. We need get all the intersection points. If we use the normal two level loops,we need O(m*n) time complexity.Is there any way to low the time complexity ...
2
votes
2answers
61 views
Objects inside a volume
I have a problem, that I need a very efficient way of finding objects inside a given volume. One can imagine, that the objects are represented as boxes with a X-min, Y-min, Z-min and X-max, Y-max, ...
2
votes
1answer
164 views
Algorithm for partitioning 1-dimensional space
I two sets of intervals that correspond to the same 1-dimensional (linear) space. Here is a rough visual--in reality, there are many more intervals and they are much more spread out, but this gives ...
2
votes
3answers
1k views
Optimize Frustum Culling
i am writing a game in C++ and have a level consisting of many seperate meshes, each with their own vertex buffer. i am using vmmlib ( brilliant free gl compat. vector/matrix library ) to create my ...
1
vote
0answers
173 views
2D Spatial partitioning alternatives to spatial hashes and quadtrees
I've been trying to implement a spatial partitioning algorithm in my game, but both spatial hashes and quadtrees aren't what I'm looking for.
My level size is not supposed to have a limit (only Int32 ...
1
vote
1answer
68 views
How can I store a binary space partitioning tree in a relational database?
I'm trying to store the data in a binary space partitioning tree in a relational database. The tricky part about this data structure is it has two different types of nodes. The first type, which we ...
1
vote
3answers
222 views
anything better than bounding boxes?
I have a scenario, where I have x million longitude latitude points.
When a new long/lat point is added I want to know efficiently which other points are within a user configured distance parameter, ...
1
vote
2answers
472 views
How do I determine which cuboids a point is in without iterating over them all?
I have a number of cuboids whose positions and sizes are given with minimum and maximum x, y and z co-ordinates (so they are parallel to the main axes).
e.g. I might have the following 3 cuboids:
...
0
votes
2answers
68 views
determine if a region of space is empty
I have a region of space, 2 dimensions, from (0,0) to (MAX_X, MAX_Y).
Inside this region of space, I draw some lines, they intersect the perimeter of the region and they may intersect one another. In ...