mirror of https://github.com/CGAL/cgal
33 lines
1.2 KiB
C
33 lines
1.2 KiB
C
/**
|
|
* \ingroup PkgPolygonMeshProcessing
|
|
* \file CGAL/polygon_mesh_processing.h
|
|
* Convenience header file only including the headers for all
|
|
* functions of this package that are part of
|
|
* the namespace `Polygon_mesh_processing` :
|
|
* `CGAL/orient_polygon_soup.h`,
|
|
* `CGAL/polygon_mesh_self_intersections.h`,
|
|
* `CGAL/polygon_soup_to_polygon_mesh.h`,
|
|
* `CGAL/triangulate_faces.h`,
|
|
* `CGAL/triangulate_hole.h`,
|
|
* `CGAL/Polygon_mesh_processing/compute_normal.h`,
|
|
* `CGAL/Polygon_mesh_processing/connected_components.h`,
|
|
* `CGAL/Polygon_mesh_processing/fair.h`,
|
|
* `CGAL/Polygon_mesh_processing/orientation.h`,
|
|
* `CGAL/Polygon_mesh_processing/refine.h`, and
|
|
* `CGAL/Polygon_mesh_processing/stitch_borders.h`.
|
|
|
|
*/
|
|
|
|
#include <CGAL/orient_polygon_soup.h>
|
|
#include <CGAL/polygon_mesh_self_intersections.h>
|
|
#include <CGAL/polygon_soup_to_polygon_mesh.h>
|
|
#include <CGAL/triangulate_faces.h>
|
|
#include <CGAL/triangulate_hole.h>
|
|
#include <CGAL/Polygon_mesh_processing/compute_normal.h>
|
|
#include <CGAL/Polygon_mesh_processing/connected_components.h>
|
|
#include <CGAL/Polygon_mesh_processing/fair.h>
|
|
#include <CGAL/Polygon_mesh_processing/orientation.h>
|
|
#include <CGAL/Polygon_mesh_processing/refine.h>
|
|
#include <CGAL/Polygon_mesh_processing/stitch_borders.h>
|
|
|