libigl v2.5.0
Loading...
Searching...
No Matches
edges_to_path.h
Go to the documentation of this file.
1#ifndef IGL_EDGES_TO_PATH_H
2#define IGL_EDGES_TO_PATH_H
3#include "igl_inline.h"
4#include <Eigen/Core>
5namespace igl
6{
20 template <
21 typename DerivedE,
22 typename DerivedI,
23 typename DerivedJ,
24 typename DerivedK>
26 const Eigen::MatrixBase<DerivedE> & E,
27 Eigen::PlainObjectBase<DerivedI> & I,
28 Eigen::PlainObjectBase<DerivedJ> & J,
29 Eigen::PlainObjectBase<DerivedK> & K);
30}
31#ifndef IGL_STATIC_LIBRARY
32# include "edges_to_path.cpp"
33#endif
34#endif
#define IGL_INLINE
Definition igl_inline.h:15
Definition AABB.h:17
void edges_to_path(const Eigen::MatrixBase< DerivedE > &E, Eigen::PlainObjectBase< DerivedI > &I, Eigen::PlainObjectBase< DerivedJ > &J, Eigen::PlainObjectBase< DerivedK > &K)
Given a set of undirected, unique edges such that all form a single connected compoent with exactly 0...