- Author
- Rene Weller
This chapter describes the ...
Definitions
Section on definitions here ...
Examples
First Example
The following example shows ...
File Sphere_packing/sphere_packing.cpp
#include <CGAL/Sphere_packing.h>
#include <CGAL/Surface_mesh.h>
#include <CGAL/Simple_cartesian.h>
#include <CGAL/Polygon_mesh_processing/IO/polygon_mesh_io.h>
using Mesh = CGAL::Surface_mesh<Point>;
namespace PMP = CGAL::Polygon_mesh_processing;
int main(int argc, const char **argv)
{
Mesh mesh;
if (!PMP::IO::read_polygon_mesh(filename, mesh))
{
std::cerr << "Invalid input." << std::endl;
return 1;
}
return 0;
}
std::string data_file_path(const std::string &filename)