libigl v2.5.0
Loading...
Searching...
No Matches
split_nonmanifold.h
Go to the documentation of this file.
1// This file is part of libigl, a simple c++ geometry processing library.
2//
3// Copyright (C) 2022 Alec Jacobson <alecjacobson@gmail.com>
4//
5// This Source Code Form is subject to the terms of the Mozilla Public License
6// v. 2.0. If a copy of the MPL was not distributed with this file, You can
7// obtain one at http://mozilla.org/MPL/2.0/.
8
9#ifndef IGL_SPLIT_NONMANIFOLD_H
10#define IGL_SPLIT_NONMANIFOLD_H
11#include "igl_inline.h"
12#include <Eigen/Core>
13namespace igl
14{
23 template <
24 typename DerivedF,
25 typename DerivedSF,
26 typename DerivedSVI
27 >
29 const Eigen::MatrixBase<DerivedF> & F,
30 Eigen::PlainObjectBase <DerivedSF> & SF,
31 Eigen::PlainObjectBase <DerivedSVI> & SVI);
35 template <
36 typename DerivedV,
37 typename DerivedF,
38 typename DerivedSV,
39 typename DerivedSF,
40 typename DerivedSVI
41 >
43 const Eigen::MatrixBase<DerivedV> & V,
44 const Eigen::MatrixBase<DerivedF> & F,
45 Eigen::PlainObjectBase <DerivedSV> & SV,
46 Eigen::PlainObjectBase <DerivedSF> & SF,
47 Eigen::PlainObjectBase <DerivedSVI> & SVI);
48}
49
50#ifndef IGL_STATIC_LIBRARY
51# include "split_nonmanifold.cpp"
52#endif
53
54#endif
#define IGL_INLINE
Definition igl_inline.h:15
Definition AABB.h:17
void split_nonmanifold(const Eigen::MatrixBase< DerivedF > &F, Eigen::PlainObjectBase< DerivedSF > &SF, Eigen::PlainObjectBase< DerivedSVI > &SVI)
Split a non-manifold (or non-orientable) mesh into a orientable manifold mesh possibly with more conn...