VTK
vtkGeoArcs.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkGeoArcs.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 -------------------------------------------------------------------------*/
30 #ifndef vtkGeoArcs_h
31 #define vtkGeoArcs_h
32 
33 #include "vtkGeovisCoreModule.h" // For export macro
34 #include "vtkPolyDataAlgorithm.h"
35 
36 class VTKGEOVISCORE_EXPORT vtkGeoArcs : public vtkPolyDataAlgorithm
37 {
38 public:
39  static vtkGeoArcs *New();
40 
42  void PrintSelf(ostream& os, vtkIndent indent);
43 
45 
49  vtkSetMacro(GlobeRadius, double);
50  vtkGetMacro(GlobeRadius, double);
52 
54 
61  vtkSetMacro(ExplodeFactor, double);
62  vtkGetMacro(ExplodeFactor, double);
64 
66 
70  vtkSetMacro(NumberOfSubdivisions, int);
71  vtkGetMacro(NumberOfSubdivisions, int);
73 
74 protected:
75  vtkGeoArcs();
77 
79 
80  double GlobeRadius;
81  double ExplodeFactor;
83 
84 private:
85  vtkGeoArcs(const vtkGeoArcs&) VTK_DELETE_FUNCTION;
86  void operator=(const vtkGeoArcs&) VTK_DELETE_FUNCTION;
87 };
88 
89 #endif
Store vtkAlgorithm input/output information.
double GlobeRadius
Definition: vtkGeoArcs.h:80
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
double ExplodeFactor
Definition: vtkGeoArcs.h:81
layout graph edges on a globe as arcs.
Definition: vtkGeoArcs.h:36
static vtkPolyDataAlgorithm * New()
Superclass for algorithms that produce only polydata as output.
a simple class to control print indentation
Definition: vtkIndent.h:39
int NumberOfSubdivisions
Definition: vtkGeoArcs.h:82
vtkSetMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
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.