Improve doc

This commit is contained in:
Andreas Fabri
2020-11-10 09:59:01 +00:00
parent c01dfb1709
commit c510a89ea0
10 changed files with 49 additions and 49 deletions
@@ -1,5 +1,5 @@
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Envelope.h>
#include <CGAL/Polyhedral_envelope.h>
#include <CGAL/Surface_mesh.h>
#include <fstream>
@@ -11,7 +11,7 @@ int main(int argc, char* argv[])
typedef CGAL::Surface_mesh<Point_3> Surface_mesh;
typedef boost::graph_traits<Surface_mesh>::vertex_descriptor vertex_descriptor;
typedef CGAL::Envelope<Kernel> Envelope;
typedef CGAL::Polyhedral_envelope<Kernel> Envelope;
std::ifstream in((argc>1) ? argv[1] : "data/unitsphere.off");
Surface_mesh tmesh;