cisst-saw
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
mtsOSGMono.h
Go to the documentation of this file.
1 /*
2 
3  Author(s): Simon Leonard
4  Created on: Dec 02 2009
5 
6  (C) Copyright 2009 Johns Hopkins University (JHU), All Rights
7  Reserved.
8 
9 --- begin cisst license - do not edit ---
10 
11 This software is provided "as is" under an open source license, with
12 no warranty. The complete license can be found in license.txt and
13 http://www.cisst.org/cisst/license.txt.
14 
15 --- end cisst license ---
16 */
17 
18 
19 #ifndef _mtsOSGMono_h
20 #define _mtsOSGMono_h
21 
22 
26 
27 class mtsOSGMono : public mtsOSGCameraTask {
28 
29  public:
30 
31  // Main constructor
32  mtsOSGMono( const std::string& name,
33  osaOSGWorld* world,
34  int x, int y, int width, int height,
35  double fovy, double aspectRatio,
36  double zNear, double zFar,
37  bool trackball = true,
38  const vctFrame4x4<double>& Rtoffset = vctFrame4x4<double>(),
39  bool offscreenrendering = false ) :
40  mtsOSGCameraTask( name,
41  new osaOSGMono( world,
42  x, y,
43  width, height,
44  fovy, aspectRatio,
45  zNear, zFar,
46  trackball,
47  Rtoffset,
48  offscreenrendering ) ){}
50 
51 };
52 
53 #endif
Definition: mtsOSGMono.h:27
Definition: mtsOSGCameraTask.h:28
Definition: osaOSGWorld.h:24
Definition: osaOSGMono.h:13
~mtsOSGMono()
Definition: mtsOSGMono.h:49
mtsOSGMono(const std::string &name, osaOSGWorld *world, int x, int y, int width, int height, double fovy, double aspectRatio, double zNear, double zFar, bool trackball=true, const vctFrame4x4< double > &Rtoffset=vctFrame4x4< double >(), bool offscreenrendering=false)
Definition: mtsOSGMono.h:32