libigl v2.5.0
Loading...
Searching...
No Matches
boundary_loop.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) 2014 Stefan Brugger <stefanbrugger@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#ifndef IGL_BOUNDARY_LOOP_H
9#define IGL_BOUNDARY_LOOP_H
10#include "igl_inline.h"
11
12#include <Eigen/Dense>
13#include <vector>
14
15namespace igl
16{
23 template <typename DerivedF, typename Index>
25 const Eigen::MatrixBase<DerivedF>& F,
26 std::vector<std::vector<Index> >& L);
27
28
36 template <typename DerivedF, typename Index>
38 const Eigen::MatrixBase<DerivedF>& F,
39 std::vector<Index>& L);
47 template <typename DerivedF, typename DerivedL>
49 const Eigen::MatrixBase<DerivedF>& F,
50 Eigen::PlainObjectBase<DerivedL>& L);
51}
52
53#ifndef IGL_STATIC_LIBRARY
54# include "boundary_loop.cpp"
55#endif
56#endif
#define IGL_INLINE
Definition igl_inline.h:15
Definition AABB.h:17
void boundary_loop(const Eigen::MatrixBase< DerivedF > &F, std::vector< std::vector< Index > > &L)
Compute list of ordered boundary loops for a manifold mesh.