libigl v2.5.0
Loading...
Searching...
No Matches
cdt.h
Go to the documentation of this file.
1#ifndef IGL_TRIANGLE_CDT_H
2#define IGL_TRIANGLE_CDT_H
3
4#include "../igl_inline.h"
5#include <Eigen/Core>
6
7namespace igl
8{
9 namespace triangle
10 {
27 template <
28 typename DerivedV,
29 typename DerivedE,
30 typename DerivedWV,
31 typename DerivedWF,
32 typename DerivedWE,
33 typename DerivedJ>
35 const Eigen::MatrixBase<DerivedV> & V,
36 const Eigen::MatrixBase<DerivedE> & E,
37 const std::string & flags,
38 Eigen::PlainObjectBase<DerivedWV> & WV,
39 Eigen::PlainObjectBase<DerivedWF> & WF,
40 Eigen::PlainObjectBase<DerivedWE> & WE,
41 Eigen::PlainObjectBase<DerivedJ> & J);
42 }
43}
44
45#ifndef IGL_STATIC_LIBRARY
46#include "cdt.cpp"
47#endif
48#endif
#define IGL_INLINE
Definition igl_inline.h:15
void cdt(const Eigen::MatrixBase< DerivedV > &V, const Eigen::MatrixBase< DerivedE > &E, const std::string &flags, Eigen::PlainObjectBase< DerivedWV > &WV, Eigen::PlainObjectBase< DerivedWF > &WF, Eigen::PlainObjectBase< DerivedWE > &WE, Eigen::PlainObjectBase< DerivedJ > &J)
Construct the constrained delaunay triangulation of the convex hull of a given set of points and segm...
Definition AABB.h:17