Since FEniCS CGAL interface is quite limited, I'm trying to generate 3d mesh using CGAL and then export this file to FEniCS.
The code is like this:
std::ofstream medit_file("out.mesh");
CGAL::output_to_medit(medit_file, c3t3);
I'm trying to use dolfin-convert on this file:
dolfin-convert out.mesh out.xml
I get the following error:
Converting from Medit format (.mesh) to DOLFIN XML format
*** Unable to find cell type.
Is there any way to export mesh data from CGAL to FEniCS?