VTK
vtkGeoTerrain.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkGeoTerrain.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
15 /*-------------------------------------------------------------------------
16  Copyright 2008 Sandia Corporation.
17  Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
18  the U.S. Government retains certain rights in this software.
19 -------------------------------------------------------------------------*/
36 #ifndef vtkGeoTerrain_h
37 #define vtkGeoTerrain_h
38 
39 #include "vtkGeovisCoreModule.h" // For export macro
40 #include "vtkObject.h"
41 
42 class vtkAssembly;
43 class vtkCollection;
45 class vtkGeoCamera;
47 class vtkGeoSource;
48 class vtkGeoTerrainNode;
49 class vtkRenderer;
50 
51 class VTKGEOVISCORE_EXPORT vtkGeoTerrain : public vtkObject
52 {
53 public:
54  static vtkGeoTerrain *New();
55  vtkTypeMacro(vtkGeoTerrain,vtkObject);
56  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
57 
62  { return this->GeoSource; }
63  virtual void SetSource(vtkGeoSource* source);
64 
68  void SaveDatabase(const char* path, int depth);
69 
76  void AddActors(
77  vtkRenderer* ren,
78  vtkAssembly* assembly,
79  vtkCollection* imageReps);
80 
82 
86  vtkSetVector3Macro(Origin, double);
87  vtkGetVector3Macro(Origin, double);
89 
91 
94  vtkSetClampMacro(MaxLevel, int, 0, VTK_INT_MAX);
95  vtkGetMacro(MaxLevel, int);
97 
98 protected:
99  vtkGeoTerrain();
100  ~vtkGeoTerrain();
101 
102  virtual void SetGeoSource(vtkGeoSource* source);
106 
110  void Initialize();
111 
115  virtual void InitializeNodeAnalysis(vtkRenderer* ren);
116 
121  virtual bool NodeInViewport(vtkGeoTerrainNode* node);
122 
127  virtual int EvaluateNode(vtkGeoTerrainNode* node);
128 
132  void PrintTree(ostream & os, vtkIndent indent, vtkGeoTerrainNode* node);
133 
134  double Origin[3];
136  virtual void SetGeoCamera(vtkGeoCamera* camera);
138  int MaxLevel;
139 
140 private:
141  vtkGeoTerrain(const vtkGeoTerrain&) VTK_DELETE_FUNCTION;
142  void operator=(const vtkGeoTerrain&) VTK_DELETE_FUNCTION;
143 };
144 
145 #endif
abstract base class for most VTK objects
Definition: vtkObject.h:59
A 3D terrain model for the globe.
Definition: vtkGeoTerrain.h:51
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
#define VTK_INT_MAX
Definition: vtkType.h:153
A multi-resolution geographic data source.
Definition: vtkGeoSource.h:57
abstract specification for renderers
Definition: vtkRenderer.h:63
vtkGeoCamera * GeoCamera
virtual vtkGeoSource * GetSource()
The source used to obtain geometry patches.
Definition: vtkGeoTerrain.h:61
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkGeoTreeNodeCache * Cache
Returns the portion of the input dataset that lies within a selection frustum.
vtkGeoSource * GeoSource
create hierarchies of vtkProp3Ds (transformable props)
Definition: vtkAssembly.h:75
boost::graph_traits< vtkGraph * >::vertex_descriptor source(boost::graph_traits< vtkGraph * >::edge_descriptor e, vtkGraph *)
vtkGeoTerrainNode * Root
create and manipulate unsorted lists of objects
Definition: vtkCollection.h:51
vtkExtractSelectedFrustum * Extractor
Manages a list of vtkGeoTreeNodes.
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...
Geo interface to a camera.
Definition: vtkGeoCamera.h:83