I think this was in fact already asked here:
http://fenicsproject.org/qa/322/how-to-create-a-3d-mesh-for-a-sphere-not-just-a-surface-mesh
But I'm not sure I am convinced of the answer. Here is a relevant bit of code to generate the situation I am talking about:
import dolfin
sphere = dolfin.Sphere(dolfin.Point(0.0, 0.0, 0.0), 5.0)
mesh = dolfin.Mesh(sphere, 32)
dolfin.plot(mesh)
dolfin.interactive()
And it seems from the plot that in fact only the surface is being meshed not the whole volume. Am I missing something here?
Thanks in advance.