libigl v2.5.0
Loading...
Searching...
No Matches
edge_topology.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_EDGE_TOPOLOGY_H
9#define IGL_EDGE_TOPOLOGY_H
10
11#include "igl_inline.h"
12
13#include <Eigen/Core>
14#include <vector>
15
16namespace igl
17{
36 template <typename DerivedV, typename DerivedF, typename DerivedE>
38 const Eigen::MatrixBase<DerivedV>& V,
39 const Eigen::MatrixBase<DerivedF>& F,
40 Eigen::PlainObjectBase<DerivedE>& EV,
41 Eigen::PlainObjectBase<DerivedE>& FE,
42 Eigen::PlainObjectBase<DerivedE>& EF);
43}
44
45#ifndef IGL_STATIC_LIBRARY
46# include "edge_topology.cpp"
47#endif
48
49#endif
#define IGL_INLINE
Definition igl_inline.h:15
Definition AABB.h:17
void edge_topology(const Eigen::MatrixBase< DerivedV > &V, const Eigen::MatrixBase< DerivedF > &F, Eigen::PlainObjectBase< DerivedE > &EV, Eigen::PlainObjectBase< DerivedE > &FE, Eigen::PlainObjectBase< DerivedE > &EF)
Initialize Edges and their topological relations (assumes an edge-manifold mesh).