12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #ifndef IGL_WRITESTL_H
- #define IGL_WRITESTL_H
- #include "igl_inline.h"
- #ifndef IGL_NO_EIGEN
- # include <Eigen/Core>
- #endif
- #include <string>
- #include <vector>
- namespace igl
- {
-
-
-
-
-
-
-
-
-
-
-
-
-
- template <typename DerivedV, typename DerivedF, typename DerivedN>
- IGL_INLINE bool writeSTL(
- const std::string & filename,
- const Eigen::PlainObjectBase<DerivedV> & V,
- const Eigen::PlainObjectBase<DerivedF> & F,
- const Eigen::PlainObjectBase<DerivedN> & N,
- const bool ascii=true);
- template <typename DerivedV, typename DerivedF>
- IGL_INLINE bool writeSTL(
- const std::string & filename,
- const Eigen::PlainObjectBase<DerivedV> & V,
- const Eigen::PlainObjectBase<DerivedF> & F,
- const bool ascii=true);
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "writeSTL.cpp"
- #endif
- #endif
|