vizkit3d
GridNode.hpp
Go to the documentation of this file.
1 #ifndef __VIZKIT_GRIDNODE_HPP__
2 #define __VIZKIT_GRIDNODE_HPP__
3 
4 #include <osg/Geode>
5 #include <osg/Geometry>
6 
7 namespace vizkit3d
8 {
9  class GridNode
10  {
11  public:
22  static ::osg::Node* create(int rows,int cols,float dx, float dy, bool show_coordinates = false, const ::osg::Vec4 &color=::osg::Vec4());
23  };
24 }
25 
26 #endif
Definition: GridNode.hpp:9
Definition: AxesNode.cpp:12
::osg::Node * create(int rows, int cols, float dx, float dy, bool show_coordinates=false, const ::osg::Vec4 &color=::osg::Vec4())
Definition: GridNode.cpp:12