VTK
vtkGeoAdaptiveArcs.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkGeoAdaptiveArcs.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 -------------------------------------------------------------------------*/
27 #ifndef vtkGeoAdaptiveArcs_h
28 #define vtkGeoAdaptiveArcs_h
29 
30 #include "vtkGeovisCoreModule.h" // For export macro
31 #include "vtkPolyDataAlgorithm.h"
32 
33 class vtkDoubleArray;
34 class vtkPolyData;
35 class vtkRenderer;
36 
38 {
39 public:
40  static vtkGeoAdaptiveArcs *New();
41 
43  void PrintSelf(ostream& os, vtkIndent indent);
44 
46 
49  vtkSetMacro(GlobeRadius, double);
50  vtkGetMacro(GlobeRadius, double);
52 
54 
58  vtkSetMacro(MaximumPixelSeparation, double);
59  vtkGetMacro(MaximumPixelSeparation, double);
61 
63 
66  vtkSetMacro(MinimumPixelSeparation, double);
67  vtkGetMacro(MinimumPixelSeparation, double);
69 
71 
72  virtual void SetRenderer(vtkRenderer *ren);
73  vtkGetObjectMacro(Renderer, vtkRenderer);
75 
77  virtual unsigned long GetMTime();
78 
79 protected:
82 
85 
87  double GlobeRadius;
90  unsigned long LastInputMTime;
94 
95 private:
96  vtkGeoAdaptiveArcs(const vtkGeoAdaptiveArcs&); // Not implemented.
97  void operator=(const vtkGeoAdaptiveArcs&); // Not implemented.
98 };
99 
100 #endif
Store vtkAlgorithm input/output information.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
abstract specification for renderers
Definition: vtkRenderer.h:63
vtkDoubleArray * InputLongitude
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:83
dynamic, self-adjusting array of double
static vtkPolyDataAlgorithm * New()
void PrintSelf(ostream &os, vtkIndent indent)
Superclass for algorithms that produce only polydata as output.
virtual unsigned long GetMTime()
a simple class to control print indentation
Definition: vtkIndent.h:38
vtkPolyData * LastInput
vtkDoubleArray * InputLatitude
unsigned long LastInputMTime
#define VTKGEOVISCORE_EXPORT
Store zero or more vtkInformation instances.
vtkRenderer * Renderer