Last active
November 12, 2020 09:46
-
-
Save afabri/ec9cb00c0c321d91389649b858576782 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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