is_border_vertex.h 557 B

123456789101112131415161718192021222324
  1. //
  2. // IGL Lib - Simple C++ mesh library
  3. //
  4. // Copyright 2011, Daniele Panozzo. All rights reserved.
  5. #ifndef IGL_IS_BORDER_VERTEX_H
  6. #define IGL_IS_BORDER_VERTEX_H
  7. #include "igl_inline.h"
  8. #include <Eigen/Core>
  9. #include <vector>
  10. namespace igl
  11. {
  12. template <typename DerivedV, typename DerivedF>
  13. IGL_INLINE std::vector<bool> is_border_vertex(const Eigen::PlainObjectBase<DerivedV> &V,
  14. const Eigen::PlainObjectBase<DerivedF> &F);
  15. }
  16. #ifdef IGL_HEADER_ONLY
  17. # include "is_border_vertex.cpp"
  18. #endif
  19. #endif