writeOFF.h 396 B

123456789101112131415161718192021
  1. #ifndef IGL_WRITEOFF_H
  2. #define IGL_WRITEOFF_H
  3. #include "igl_inline.h"
  4. #include <Eigen/Core>
  5. #include <string>
  6. namespace igl
  7. {
  8. template <typename DerivedV, typename DerivedF>
  9. IGL_INLINE bool writeOFF(
  10. const std::string str,
  11. const Eigen::PlainObjectBase<DerivedV>& V,
  12. const Eigen::PlainObjectBase<DerivedF>& F);
  13. }
  14. #ifdef IGL_HEADER_ONLY
  15. # include "writeOFF.cpp"
  16. #endif
  17. #endif