is_border_vertex.h 434 B

1234567891011121314151617181920212223
  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 T>
  13. IGL_INLINE std::vector<bool> is_border_vertex(const T& V, const Eigen::MatrixXi& F);
  14. }
  15. #ifdef IGL_HEADER_ONLY
  16. # include "is_border_vertex.cpp"
  17. #endif
  18. #endif