Ordering object into a cuboid

Started by
1 comment, last by dnaxx 18 years, 4 months ago
Hello! I have a bunch of spheres, and I want to order them in the shape of a cuboid. Whats the best way to achive this? Thank you,
Advertisement
Hi...
I'm not sure what you mean by 'order them'. If you mean, how to find a bounding box that encapsulates them, the following should do.

This is definitely not the best way, I'm sure there are better ways than the one I'll suggest but it's still O(n) complexity on the number of spheres, so it shouldn't be that bad.

1. define 6 variables xMin,xMax, yMin,yMax, zMin,zMax
2. Run through all spheres
3. xMin = min(xMin, sphere.center.x-radius);
xMax = max(xMax, sphere.center.x+radius);
yMin = min(yMin, sphere.center.y-radius);
etc...

Use these values to compute the vertices of your cuboid in the obvious way.
I want to place spheres in a way, so that they result into cuboid.
But I already made it with a dirty approach.

This topic is closed to new replies.

Advertisement