Dear all
I find that sometimes the mesh generated by cgal in FEniCS is not very regular,
i.e., some elements seem to too small or too large. So is there any command that
can smooth internal vertices of mesh by local averaging. Please see the following
simple code for example. I hope to make every element has the same size.
Any help is welcome. Thank you~
from dolfin import *
domain = Rectangle(0., 0., 1., 1.) + Circle(0.5, 1, .5)
mesh2d = Mesh(domain, 5)
plot(mesh2d, "2D mesh")
interactive()