Skip to content

Instantly share code, notes, and snippets.

@afabri
Last active November 12, 2020 09:46
Show Gist options
  • Save afabri/ec9cb00c0c321d91389649b858576782 to your computer and use it in GitHub Desktop.
Save afabri/ec9cb00c0c321d91389649b858576782 to your computer and use it in GitHub Desktop.
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/convexity_check_3.h>
#include <CGAL/Surface_mesh.h>
typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
typedef K::Point_3 Point_3;
typedef CGAL::Surface_mesh<Point_3> Surface_mesh;
void fct(const Surface_mesh& sm)
{
bool b = CGAL::is_strongly_convex_3(sm);
}
int main()
{
Surface_mesh sm;
fct(sm);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment