12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #ifndef IGL_OPENGL2_VIEW_AXIS_H
- #define IGL_OPENGL2_VIEW_AXIS_H
- #include "../igl_inline.h"
- #include <Eigen/Core>
- namespace igl
- {
- namespace opengl2
- {
-
-
-
-
-
-
-
-
-
-
-
-
- IGL_INLINE void view_axis(const double * mv, double * x, double * y, double * z);
-
- IGL_INLINE void view_axis(double * x, double * y, double * z);
- template <typename DerivedV>
- IGL_INLINE void view_axis(Eigen::PlainObjectBase<DerivedV> & V);
- }
- };
- #ifndef IGL_STATIC_LIBRARY
- # include "view_axis.cpp"
- #endif
- #endif
|