How do you go about creating a sphere with meshes in Direct-x? I'm using C++ and the program will be run on windows, only.
Everything is currently rendered through an IDiRECT3DDEVICE9 object.
|
|
|||||||||||
|
|
|
You could use the |
||||||||||||||
|
|
|
There are lots of ways to create a sphere. One is to use polar coordinates to generate slices of the sphere.
Given that struct you'd generate the sphere as follows (I haven't tested this so I may have got it slightly wrong).
This is how D3DXCreateSphere does it i believe. Of course the code above does not form the faces but thats not a particularly complex bit of code if you set your mind to it :) The other, and more interesting in my opinion, way is through surface subdivision. If you start with a cube that has normals defined the same way as the above code you can recursively subdivide each side. Basically you find the center of the face. Generate a vector from the center to the new point. Normalise it. Push the vert out to the radius of the sphere as follows (Assuming v.n* is the normalised normal):
You then repeat this process for the mid point of each edge of the face you are subdividing. Now you can split each face into 4 new quadrilateral faces. You can then subdivide each of those quads into 4 new quads and so on until you get to the refinement level you require. Personally I find this process provides a nicer vertex distribution on the sphere than the first method. |
|||