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 "vtkPolyDataAlgorithm.h"
33 
35 {
36 public:
37  static vtkGeoArcs *New();
38 
40  void PrintSelf(ostream& os, vtkIndent indent);
41 
43 
45  vtkSetMacro(GlobeRadius, double);
46  vtkGetMacro(GlobeRadius, double);
48 
50 
54  vtkSetMacro(ExplodeFactor, double);
55  vtkGetMacro(ExplodeFactor, double);
57 
59 
60  vtkSetMacro(NumberOfSubdivisions, int);
61  vtkGetMacro(NumberOfSubdivisions, int);
63 
64 protected:
65  vtkGeoArcs();
67 
69 
70  double GlobeRadius;
71  double ExplodeFactor;
73 
74 private:
75  vtkGeoArcs(const vtkGeoArcs&); // Not implemented.
76  void operator=(const vtkGeoArcs&); // Not implemented.
77 };
78 
79 #endif