writeOFF.h 407 B

12345678910111213141516171819202122
  1. //
  2. // IGL Lib - Simple C++ mesh library
  3. //
  4. // Copyright 2011, Daniele Panozzo. All rights reserved.
  5. #ifndef IGL_WRITEOFF_H
  6. #define IGL_WRITEOFF_H
  7. #include "igl_inline.h"
  8. #include <Eigen/Core>
  9. #include <string>
  10. namespace igl
  11. {
  12. IGL_INLINE bool writeOFF(const std::string fname, const Eigen::MatrixXd& V, const Eigen::MatrixXi& F);
  13. }
  14. #ifdef IGL_HEADER_ONLY
  15. # include "writeOFF.cpp"
  16. #endif
  17. #endif