OpenCOVER
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
coVRRenderer.h
Go to the documentation of this file.
1 /* This file is part of COVISE.
2 
3  You can use it under the terms of the GNU Lesser General Public License
4  version 2.1 or later, see lgpl-2.1.txt.
5 
6  * License: LGPL 2+ */
7 
8 #ifndef VR_RENDERER_H
9 #define VR_RENDERER_H
10 
11 #include <osgViewer/Renderer>
12 
13 #include <util/common.h>
14 
15 #include <osg/Vec3>
16 #include <osg/Matrix>
17 
18 namespace opencover
19 {
20 class COVEREXPORT coVRRenderer : public osgViewer::Renderer
21 {
22 public:
23 public:
24  coVRRenderer(osg::Camera *camera, int channel);
25 
26  virtual ~coVRRenderer();
27 };
28 }
29 #endif
Definition: coVRRenderer.h:20