libigl v2.5.0
Loading...
Searching...
No Matches
is_self_intersecting.h
Go to the documentation of this file.
1#ifndef IGL_COPYLEFT_CGAL_IS_SELF_INTERSECTING_H
2#define IGL_COPYLEFT_CGAL_IS_SELF_INTERSECTING_H
3
4#include "../../igl_inline.h"
5#include <Eigen/Core>
6
7namespace igl
8{
9 namespace copyleft
10 {
11 namespace cgal
12 {
22 template <
23 typename DerivedV,
24 typename DerivedF>
26 const Eigen::MatrixBase<DerivedV> & V,
27 const Eigen::MatrixBase<DerivedF> & F);
28 }
29 }
30}
31
32#ifndef IGL_STATIC_LIBRARY
33# include "is_self_intersecting.cpp"
34#endif
35
36#endif
Definition assign.h:19
bool is_self_intersecting(const Eigen::MatrixBase< DerivedV > &V, const Eigen::MatrixBase< DerivedF > &F)
Determine if a mesh has any self-intersections.
Definition assign.h:17
Definition AABB.h:18