libigl v2.5.0
Loading...
Searching...
No Matches
faces_first.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) 2013 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#ifndef IGL_FACES_FIRST_H
9#define IGL_FACES_FIRST_H
10#include "igl_inline.h"
11namespace igl
12{
39 template <typename MatV, typename MatF, typename VecI>
41 const MatV & V,
42 const MatF & F,
43 MatV & RV,
44 MatF & RF,
45 VecI & IM);
47 template <typename MatV, typename MatF, typename VecI>
49 MatV & V,
50 MatF & F,
51 VecI & IM);
52}
53
54#ifndef IGL_STATIC_LIBRARY
55# include "faces_first.cpp"
56#endif
57
58#endif
#define IGL_INLINE
Definition igl_inline.h:15
Definition AABB.h:17
void faces_first(const MatV &V, const MatF &F, MatV &RV, MatF &RF, VecI &IM)
Reorder vertices so that vertices in face list come before vertices that don't appear in the face lis...