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 #if !defined(VTK_LEGACY_REMOVE)
39 class VTKGEOVISCORE_EXPORT vtkGeoAdaptiveArcs : public vtkPolyDataAlgorithm
40 {
41 public:
42  static vtkGeoAdaptiveArcs *New();
43 
45  void PrintSelf(ostream& os, vtkIndent indent) override;
46 
48 
53  vtkSetMacro(GlobeRadius, double);
54  vtkGetMacro(GlobeRadius, double);
56 
58 
64  vtkSetMacro(MaximumPixelSeparation, double);
65  vtkGetMacro(MaximumPixelSeparation, double);
67 
69 
74  vtkSetMacro(MinimumPixelSeparation, double);
75  vtkGetMacro(MinimumPixelSeparation, double);
77 
79 
83  virtual void SetRenderer(vtkRenderer *ren);
84  vtkGetObjectMacro(Renderer, vtkRenderer);
86 
90  vtkMTimeType GetMTime() override;
91 
92 protected:
94  ~vtkGeoAdaptiveArcs() override;
95 
100 
102  double GlobeRadius;
109 
110 private:
111  vtkGeoAdaptiveArcs(const vtkGeoAdaptiveArcs&) = delete;
112  void operator=(const vtkGeoAdaptiveArcs&) = delete;
113 };
114 
115 #endif //VTK_LEGACY_REMOVE
116 #endif
Store vtkAlgorithm input/output information.
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:302
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
abstract specification for renderers
Definition: vtkRenderer.h:63
vtkDoubleArray * InputLongitude
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:85
dynamic, self-adjusting array of double
static vtkPolyDataAlgorithm * New()
Superclass for algorithms that produce only polydata as output.
a simple class to control print indentation
Definition: vtkIndent.h:39
virtual vtkMTimeType GetMTime()
Return this object's modified time.
vtkDoubleArray * InputLatitude
vtkMTimeType LastInputMTime
Store zero or more vtkInformation instances.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.