12345678910111213141516171819202122232425262728293031323334 |
- #ifndef IGL_OPENGL2_RIGHT_AXIS_H
- #define IGL_OPENGL2_RIGHT_AXIS_H
- #include "../igl_inline.h"
- namespace igl
- {
- namespace opengl2
- {
-
-
-
-
-
-
-
-
-
-
-
- IGL_INLINE void right_axis(double * x, double * y, double * z);
- IGL_INLINE void right_axis(const double * mv, double * x, double * y, double * z);
- }
- };
- #ifndef IGL_STATIC_LIBRARY
- # include "right_axis.cpp"
- #endif
- #endif
|