123456789101112131415161718192021222324 |
- //
- // IGL Lib - Simple C++ mesh library
- //
- // Copyright 2011, Daniele Panozzo. All rights reserved.
- #ifndef IGL_IS_BORDER_VERTEX_H
- #define IGL_IS_BORDER_VERTEX_H
- #include "igl_inline.h"
- #include <Eigen/Core>
- #include <vector>
- namespace igl
- {
- template <typename DerivedV, typename DerivedF>
- IGL_INLINE std::vector<bool> is_border_vertex(const Eigen::PlainObjectBase<DerivedV> &V,
- const Eigen::PlainObjectBase<DerivedF> &F);
- }
- #ifdef IGL_HEADER_ONLY
- # include "is_border_vertex.cpp"
- #endif
- #endif
|