root/include/utility/conversions.hpp

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   1 #ifndef __CONVERSIONS_HPP__
   2 #define __CONVERSIONS_HPP__
   3 
   4 #include "Python.h"
   5 #include "osg/Vec3f"
   6 #include "osg/Vec4f"
   7 #include "osg/Vec3d"
   8 #include "osg/Vec4d"
   9 
  10 osg::Vec4d
  11 pysequence_to_vec4d(PyObject * sequence);
  12 
  13 osg::Vec4f
  14 pysequence_to_vec4f(PyObject * sequence);
  15 
  16 osg::Vec3d
  17 pysequence_to_vec3d(PyObject * sequence);
  18 
  19 osg::Vec3f
  20 pysequence_to_vec3f(PyObject * sequence);
  21 
  22 #endif

/* [<][>][^][v][top][bottom][index][help] */