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 -------------------------------------------------------------------------*/
29 #ifndef vtkGeoArcs_h
30 #define vtkGeoArcs_h
31 
32 #include "vtkGeovisCoreModule.h" // For export macro
33 #include "vtkPolyDataAlgorithm.h"
34 
36 {
37 public:
38  static vtkGeoArcs *New();
39 
41  void PrintSelf(ostream& os, vtkIndent indent);
42 
44 
46  vtkSetMacro(GlobeRadius, double);
47  vtkGetMacro(GlobeRadius, double);
49 
51 
55  vtkSetMacro(ExplodeFactor, double);
56  vtkGetMacro(ExplodeFactor, double);
58 
60 
61  vtkSetMacro(NumberOfSubdivisions, int);
62  vtkGetMacro(NumberOfSubdivisions, int);
64 
65 protected:
66  vtkGeoArcs();
68 
70 
71  double GlobeRadius;
72  double ExplodeFactor;
74 
75 private:
76  vtkGeoArcs(const vtkGeoArcs&); // Not implemented.
77  void operator=(const vtkGeoArcs&); // Not implemented.
78 };
79 
80 #endif
Store vtkAlgorithm input/output information.
double GlobeRadius
Definition: vtkGeoArcs.h:71
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
double ExplodeFactor
Definition: vtkGeoArcs.h:72
layout graph edges on a globe as arcs.
Definition: vtkGeoArcs.h:35
static vtkPolyDataAlgorithm * New()
void PrintSelf(ostream &os, vtkIndent indent)
Superclass for algorithms that produce only polydata as output.
a simple class to control print indentation
Definition: vtkIndent.h:38
int NumberOfSubdivisions
Definition: vtkGeoArcs.h:73
#define VTKGEOVISCORE_EXPORT
Store zero or more vtkInformation instances.