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 -------------------------------------------------------------------------*/
28 #ifndef vtkGeoAdaptiveArcs_h
29 #define vtkGeoAdaptiveArcs_h
30 
31 #include "vtkGeovisCoreModule.h" // For export macro
32 #include "vtkPolyDataAlgorithm.h"
33 
34 class vtkDoubleArray;
35 class vtkPolyData;
36 class vtkRenderer;
37 
38 class VTKGEOVISCORE_EXPORT vtkGeoAdaptiveArcs : public vtkPolyDataAlgorithm
39 {
40 public:
41  static vtkGeoAdaptiveArcs *New();
42 
44  void PrintSelf(ostream& os, vtkIndent indent);
45 
47 
52  vtkSetMacro(GlobeRadius, double);
53  vtkGetMacro(GlobeRadius, double);
55 
57 
63  vtkSetMacro(MaximumPixelSeparation, double);
64  vtkGetMacro(MaximumPixelSeparation, double);
66 
68 
73  vtkSetMacro(MinimumPixelSeparation, double);
74  vtkGetMacro(MinimumPixelSeparation, double);
76 
78 
82  virtual void SetRenderer(vtkRenderer *ren);
83  vtkGetObjectMacro(Renderer, vtkRenderer);
85 
90 
91 protected:
94 
99 
101  double GlobeRadius;
108 
109 private:
110  vtkGeoAdaptiveArcs(const vtkGeoAdaptiveArcs&) VTK_DELETE_FUNCTION;
111  void operator=(const vtkGeoAdaptiveArcs&) VTK_DELETE_FUNCTION;
112 };
113 
114 #endif
vtkGeoAdaptiveArcs::InputLatitude
vtkDoubleArray * InputLatitude
Definition: vtkGeoAdaptiveArcs.h:106
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:41
vtkGeoAdaptiveArcs
Definition: vtkGeoAdaptiveArcs.h:38
vtkGeoAdaptiveArcs::LastInputMTime
vtkMTimeType LastInputMTime
Definition: vtkGeoAdaptiveArcs.h:104
vtkPolyDataAlgorithm::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkGeoAdaptiveArcs::MinimumPixelSeparation
double MinimumPixelSeparation
Definition: vtkGeoAdaptiveArcs.h:103
vtkMTimeType
vtkTypeUInt64 vtkMTimeType
Definition: vtkType.h:248
vtkPolyDataAlgorithm.h
vtkGeoAdaptiveArcs::LastInput
vtkPolyData * LastInput
Definition: vtkGeoAdaptiveArcs.h:105
vtkPolyDataAlgorithm::RequestData
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
vtkObject::GetMTime
virtual vtkMTimeType GetMTime()
Return this object's modified time.
vtkGeoAdaptiveArcs::Renderer
vtkRenderer * Renderer
Definition: vtkGeoAdaptiveArcs.h:100
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkGeoAdaptiveArcs::MaximumPixelSeparation
double MaximumPixelSeparation
Definition: vtkGeoAdaptiveArcs.h:102
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:86
vtkSetMacro
vtkSetMacro(IgnoreDriverBugs, bool)
Updates the extensions string.
vtkGeoAdaptiveArcs::InputLongitude
vtkDoubleArray * InputLongitude
Definition: vtkGeoAdaptiveArcs.h:107
vtkRenderer
abstract specification for renderers
Definition: vtkRenderer.h:63
vtkPolyData
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:85
vtkDoubleArray
dynamic, self-adjusting array of double
Definition: vtkDoubleArray.h:41
vtkGeoAdaptiveArcs::GlobeRadius
double GlobeRadius
Definition: vtkGeoAdaptiveArcs.h:101
vtkPolyDataAlgorithm::New
static vtkPolyDataAlgorithm * New()
vtkPolyDataAlgorithm
Superclass for algorithms that produce only polydata as output.
Definition: vtkPolyDataAlgorithm.h:44