Skip to content

Instantly share code, notes, and snippets.

@bo0ts
bo0ts / gist:eb5c58e138f3e120aeb5
Last active September 23, 2015 09:41 — forked from visorz/gist:a6e1f6a2e3ded3519109
A minimal demonstration of what an point iterator in Surfacemesh should be able to do.
#include <CGAL/Simple_cartesian.h>
typedef CGAL::Simple_cartesian<double> Kernel;
typedef Kernel::FT Scalar;
typedef Kernel::Point_3 Point;
typedef Kernel::Vector_3 Vector;
#include <CGAL/Surface_mesh.h>
typedef CGAL::Surface_mesh<Point> Surfacemesh;
#include <CGAL/centroid.h>