1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #ifndef IGL_WRITEOFF_H
- #define IGL_WRITEOFF_H
- #include "igl_inline.h"
- #include <Eigen/Core>
- #include <string>
- namespace igl
- {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- template <typename DerivedV, typename DerivedF, typename DerivedC>
- IGL_INLINE bool writeOFF(
- const std::string str,
- const Eigen::PlainObjectBase<DerivedV>& V,
- const Eigen::PlainObjectBase<DerivedF>& F,
- const Eigen::PlainObjectBase<DerivedC>& C);
- template <typename DerivedV, typename DerivedF>
- IGL_INLINE bool writeOFF(
- const std::string str,
- const Eigen::PlainObjectBase<DerivedV>& V,
- const Eigen::PlainObjectBase<DerivedF>& F);
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "writeOFF.cpp"
- #endif
- #endif
|