libigl v2.5.0
Loading...
Searching...
No Matches
cut_to_disk.h
Go to the documentation of this file.
1#ifndef IGL_CUT_TO_DISK_H
2#define IGL_CUT_TO_DISK_H
3#include "igl_inline.h"
4
5#include <Eigen/Core>
6
7#include <vector>
8
9namespace igl
10{
34 template <
35 typename DerivedF,
36 typename Index>
38 const Eigen::MatrixBase<DerivedF> &F,
39 std::vector<std::vector<Index> > &cuts);
40};
41
42#ifndef IGL_STATIC_LIBRARY
43#include "cut_to_disk.cpp"
44#endif
45
46#endif
#define IGL_INLINE
Definition igl_inline.h:15
Definition AABB.h:17
void cut_to_disk(const Eigen::MatrixBase< DerivedF > &F, std::vector< std::vector< Index > > &cuts)
Given a triangle mesh, computes a set of edge cuts sufficient to carve the mesh into a topological di...