I load multiple meshs from .x files in different mesh variables. Now I would like to calculate the bounding sphere across all the meshes I have loaded (and which are being displayed) Please guide me how this could be achieved. Can VertexBuffers be appended togather in one variable and the boundingSphere be computed using that? (if yes how are they vertexBuffers added togather) Otherwise what alternative would you suggest!? Thankx
|
feedback
|
|
I have an idea, what I would do is that I would determine the center of every single mesh object, and then determine the center of the collection of mesh objects by using the aforementioned information ... | |||
|
feedback
|
|
Its surprisingly easy to do this: You need to, firstly, average all your vertices. This gives you the center position. This is done as follows in C++ (Sorry my C# is pretty rusty but it should give ya an idea):
Now you need to go through every vert and work out which vert is the furthest away from the center point. Something like this would work (in C++):
And you now have your center position (avgPos) and your radius (radius) and, thus, all the info you need to define a bounding sphere. | |||
|
feedback
|