/usr/include/vtk-5.10/vtkGeoCamera.h is in libvtk5-dev 5.10.1+dfsg-2.1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkGeoCamera.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/*-------------------------------------------------------------------------
Copyright 2008 Sandia Corporation.
Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
the U.S. Government retains certain rights in this software.
-------------------------------------------------------------------------*/
// .NAME vtkGeoCamera - Geo interface to a camera.
//
// .SECTION Description
// I wanted to hide the normal vtkCamera API
// so I did not make this a subclass. The camera is a helper object.
// You can get a pointer to the camera, but it should be treated like
// a const.
// View up of the camera is restricted so there is no roll relative
// to the earth. I am going to keep view up of the camera orthogonalized to
// avoid the singularity that exists when the camera is pointing straight down.
// In this case, view up is the same as heading.
//
// The state of the view is specified by the vector:
// (Longitude,Latitude,Distance,Heading,Tilt).
// Longitude in degrees: (-180->180)
// Relative to absolute coordinates.
// Latitude in degrees: (-90->90)
// Relative to Longitude.
// Distance in Meters
// Relative to Longitude and Latitude.
// above sea level ???? should we make this from center of earth ????
// ???? what about equatorial bulge ????
// Heading in degrees: (-180->180)
// Relative to Logitude and Latitude.
// 0 is north.
// 90 is east. ???? what is the standard ????
// 180 is south.
// -90 is west.
// Tilt in degrees: (0->90)
// Relative to Longitude, Latitude, Distance and Heading.
//
//
// Transformation:
// Post concatenate.
// All rotations use right hand rule and are around (0,0,0) (earth center).
// (0,0,0,0,0) is this rectilinear point (0, EarthRadius, 0)
// pointing (0,0,1), view up (0,1,0).
//
// Rotate Tilt around x axis,
// Rotate Heading around -y axis Center,
// Translate EarthRadius in y direction.
// Rotate Latitude around x axis by Latitude,
// Rotate Longitude around z axis (earth axis),
//
// .SECTION See Also
// vtkGeoInteractorStyle vtkCamera
#ifndef __vtkGeoCamera_h
#define __vtkGeoCamera_h
#include "vtkObject.h"
#include "vtkSmartPointer.h" // for SP
class vtkCamera;
class vtkGeoTerrainNode;
class vtkTransform;
class VTK_GEOVIS_EXPORT vtkGeoCamera : public vtkObject
{
public:
static vtkGeoCamera *New();
vtkTypeMacro(vtkGeoCamera, vtkObject);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Get the world position without the origin shift.
vtkGetVector3Macro(Position, double);
// Description:
// Longitude is in degrees: (-180->180)
// Relative to absolute coordinates.
// Rotate Longitude around z axis (earth axis),
void SetLongitude(double longitude);
vtkGetMacro(Longitude,double);
// Description:
// Latitude is in degrees: (-90->90)
// Relative to Longitude.
// Rotate Latitude around x axis by Latitude,
void SetLatitude(double latitude);
vtkGetMacro(Latitude,double);
// Description:
// Distance is in Meters
// Relative to Longitude and Latitude.
// above sea level ???? should we make this from center of earth ????
// ???? what about equatorial bulge ????
void SetDistance(double Distance);
vtkGetMacro(Distance,double);
// Description:
// Heading is in degrees: (-180->180)
// Relative to Logitude and Latitude.
// 0 is north.
// 90 is east. ???? what is the standard ????
// 180 is south.
// -90 is west.
// Rotate Heading around -y axis Center,
void SetHeading(double heading);
vtkGetMacro(Heading,double);
// Description:
// Tilt is also know as pitch.
// Tilt is in degrees: (0->90)
// Relative to Longitude, Latitude, and Heading.
// Rotate Tilt around x axis,
void SetTilt(double tilt);
vtkGetMacro(Tilt,double);
// Description:
// This vtk camera is updated to match this geo cameras state.
// It should be treated as a const and should not be modified.
vtkCamera* GetVTKCamera();
// Description:
// We precompute some values to speed up update of the terrain.
// Unfortunately, they have to be manually/explicitly updated
// when the camera or renderer size changes.
void InitializeNodeAnalysis(int rendererSize[2]);
// Description:
// This method estimates how much of the view is covered by the sphere.
// Returns a value from 0 to 1.
double GetNodeCoverage(vtkGeoTerrainNode* node);
// Description:
// Whether to lock the heading a particular value,
// or to let the heading "roam free" when performing
// latitude and longitude changes.
vtkGetMacro(LockHeading, bool);
vtkSetMacro(LockHeading, bool);
vtkBooleanMacro(LockHeading, bool);
// Description:
// This point is shifted to 0,0,0 to avoid openGL issues.
void SetOriginLatitude(double oLat);
vtkGetMacro(OriginLatitude, double);
void SetOriginLongitude(double oLat);
vtkGetMacro(OriginLongitude, double);
// Description:
// Get the rectilinear cooridinate location of the origin.
// This is used to shift the terrain points.
vtkGetVector3Macro(Origin, double);
void SetOrigin( double ox, double oy, double oz ) {
this->Origin[0] = ox; this->Origin[1] = oy; this->Origin[2] = oz;
this->UpdateVTKCamera();
}
protected:
vtkGeoCamera();
~vtkGeoCamera();
void UpdateVTKCamera();
void UpdateAngleRanges();
//BTX
vtkSmartPointer<vtkCamera> VTKCamera;
vtkSmartPointer<vtkTransform> Transform;
//ETX
// This point is shifted to 0,0,0 to avoid openGL issues.
double OriginLatitude;
double OriginLongitude;
double Origin[3];
void ComputeRectilinearOrigin();
double Longitude;
double Latitude;
double Distance;
double Heading;
double Tilt;
bool LockHeading;
// Values precomputed to make updating terrain mode efficient.
// The vislibility of many terrain nodes is analyzed every render.
double ForwardNormal[3];
double RightNormal[3];
double UpNormal[3];
double Aspect[2];
// Frustum planes is better than other options for culling spheres.
double LeftPlaneNormal[3];
double RightPlaneNormal[3];
double DownPlaneNormal[3];
double UpPlaneNormal[3];
double Position[3];
private:
vtkGeoCamera(const vtkGeoCamera&); // Not implemented.
void operator=(const vtkGeoCamera&); // Not implemented.
};
#endif
|