Logo ROOT  
Reference Guide
TGLOrthoCamera.h
Go to the documentation of this file.
1// @(#)root/gl:$Id$
2// Author: Richard Maunder 25/05/2005
3
4/*************************************************************************
5 * Copyright (C) 1995-2004, Rene Brun and Fons Rademakers. *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11
12#ifndef ROOT_TGLOrthoCamera
13#define ROOT_TGLOrthoCamera
14
15#include "TGLCamera.h"
16
17
18//////////////////////////////////////////////////////////////////////////
19// //
20// TGLOrthoCamera //
21// //
22// Orthographic projection camera. Currently limited to three types //
23// defined at construction time - kXOY, kXOZ, kZOY - where this refers //
24// to the viewport plane axis - e.g. kXOY has X axis horizontal, Y //
25// vertical - i.e. looking down Z axis with Y vertical. //
26//
27// The plane types restriction could easily be removed to supported //
28// arbitary ortho projections along any axis/orientation with free //
29// rotations about them. //
30// //
31//////////////////////////////////////////////////////////////////////////
32
33class TGLPaintDevice;
34
36{
37public:
38 enum EType { kZOY, kXOZ, kXOY, // Pair of world axes aligned to h/v screen.
39 kZnOY, kXnOZ, kXnOY, kZOX, kZnOX}; // 'n' means preceding axis is negated.
40private:
41 // Fields
42 EType fType; // camera type
43 Bool_t fEnableRotate; // enable rotation
44 Bool_t fDollyToZoom; // zoom when dolly is requested
45
46 // Limits - set in Setup()
47 Double_t fZoomMin; // minimum zoom factor
48 Double_t fZoomDefault; // default zoom factor
49 Double_t fZoomMax; // maximum zoom factor
50 TGLBoundingBox fVolume; //! scene volume
51
52 // Current interaction
53 Double_t fDefXSize, fDefYSize; //! x, y size of scene from camera view
54 Double_t fZoom; // current zoom
55
57
58public:
60 TGLOrthoCamera(EType type, const TGLVector3 & hAxis, const TGLVector3 & vAxis);
61 virtual ~TGLOrthoCamera();
62
63 virtual Bool_t IsOrthographic() const { return kTRUE; }
64
65 virtual void Setup(const TGLBoundingBox & box, Bool_t reset=kTRUE);
66 virtual void Reset();
67
68 virtual Bool_t Dolly(Int_t delta, Bool_t mod1, Bool_t mod2);
69 virtual Bool_t Zoom (Int_t delta, Bool_t mod1, Bool_t mod2);
70 using TGLCamera::Truck;
71 virtual Bool_t Truck(Int_t xDelta, Int_t yDelta, Bool_t mod1, Bool_t mod2);
72 virtual Bool_t Rotate(Int_t xDelta, Int_t yDelta, Bool_t mod1, Bool_t mod2);
73 virtual void Apply(const TGLBoundingBox & sceneBox, const TGLRect * pickRect = 0) const;
74
75 // External scripting control
76 // void Configure(Double_t left, Double_t right, Double_t top, Double_t bottom);
77 virtual void Configure(Double_t zoom, Double_t dolly, Double_t center[3],
78 Double_t hRotate, Double_t vRotate);
79
82
83 Double_t GetZoomMin() const { return fZoomMin; }
84 Double_t GetZoomMax() const { return fZoomMax; }
85 void SetZoomMin(Double_t z);
86 void SetZoomMax(Double_t z);
87 void SetZoomMinMax(Double_t min, Double_t max) { SetZoomMin(min); SetZoomMax(max); }
88
91
92 void SetZoom(Double_t x) { fZoom = x; }
93 Double_t GetZoom() const { return fZoom; }
94
95 ClassDef(TGLOrthoCamera,1) // Camera for orthographic view.
96};
97
98#endif // ROOT_TGLOrthoCamera
int Int_t
Definition: RtypesCore.h:41
unsigned int UInt_t
Definition: RtypesCore.h:42
bool Bool_t
Definition: RtypesCore.h:59
double Double_t
Definition: RtypesCore.h:55
const Bool_t kTRUE
Definition: RtypesCore.h:87
#define ClassDef(name, id)
Definition: Rtypes.h:326
int type
Definition: TGX11.cxx:120
Concrete class describing an orientated (free) or axis aligned box of 8 vertices.
Abstract base camera class - concrete classes for orthographic and perspective cameras derive from it...
Definition: TGLCamera.h:44
virtual Bool_t Truck(Double_t xDelta, Double_t yDelta)
Truck the camera - 'move camera parallel to film plane'.
Definition: TGLCamera.cxx:894
Orthographic projection camera.
void SetZoom(Double_t x)
Double_t fDefYSize
virtual void Reset()
Reset the camera to defaults - trucking, zooming to reframe the world volume established in Setup().
void SetZoomMax(Double_t z)
Set maximum zoom factor.
Bool_t GetDollyToZoom() const
virtual Bool_t Truck(Int_t xDelta, Int_t yDelta, Bool_t mod1, Bool_t mod2)
Truck the camera - 'move camera parallel to film plane'.
void SetDollyToZoom(Bool_t x)
Double_t fZoom
x, y size of scene from camera view
virtual Bool_t IsOrthographic() const
virtual Bool_t Dolly(Int_t delta, Bool_t mod1, Bool_t mod2)
Dolly the camera.
Bool_t GetEnableRotate() const
void SetEnableRotate(Bool_t x)
Double_t GetZoomMax() const
Double_t fZoomMax
virtual ~TGLOrthoCamera()
Destroy orthographic camera.
TGLBoundingBox fVolume
virtual void Setup(const TGLBoundingBox &box, Bool_t reset=kTRUE)
Setup camera limits suitable to view the world volume defined by 'box' and call Reset() to initialise...
Double_t fZoomMin
static UInt_t fgZoomDeltaSens
virtual Bool_t Zoom(Int_t delta, Bool_t mod1, Bool_t mod2)
Zoom the camera - 'adjust lens focal length, retaining camera position'.
Double_t GetZoomMin() const
virtual void Configure(Double_t zoom, Double_t dolly, Double_t center[3], Double_t hRotate, Double_t vRotate)
Configure the camera state.
void SetZoomMinMax(Double_t min, Double_t max)
TGLOrthoCamera()
Construct kXOY orthographic camera.
Double_t fDefXSize
scene volume
void SetZoomMin(Double_t z)
Set minimum zoom factor.
Double_t GetZoom() const
Double_t fZoomDefault
virtual void Apply(const TGLBoundingBox &sceneBox, const TGLRect *pickRect=0) const
Apply the camera to the current GL context, setting the viewport, projection and modelview matrices.
Bool_t fEnableRotate
virtual Bool_t Rotate(Int_t xDelta, Int_t yDelta, Bool_t mod1, Bool_t mod2)
Rotate the camera - 'swivel round the view volume center'.
Viewport (pixel base) 2D rectangle class.
Definition: TGLUtil.h:421
3 component (x/y/z) vector class.
Definition: TGLUtil.h:247
void box(Int_t pat, Double_t x1, Double_t y1, Double_t x2, Double_t y2)
Definition: fillpatterns.C:1
Double_t x[n]
Definition: legend1.C:17