VTK  9.2.6
vtkEarthSource.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkEarthSource.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=========================================================================*/
38#ifndef vtkEarthSource_h
39#define vtkEarthSource_h
40
41#include "vtkFiltersHybridModule.h" // For export macro
43
44class VTKFILTERSHYBRID_EXPORT vtkEarthSource : public vtkPolyDataAlgorithm
45{
46public:
49 void PrintSelf(ostream& os, vtkIndent indent) override;
50
52
55 vtkSetClampMacro(Radius, double, 0.0, VTK_FLOAT_MAX);
56 vtkGetMacro(Radius, double);
58
60
65 vtkSetClampMacro(OnRatio, int, 1, 16);
66 vtkGetMacro(OnRatio, int);
68
70
76 vtkSetMacro(Outline, vtkTypeBool);
77 vtkGetMacro(Outline, vtkTypeBool);
78 vtkBooleanMacro(Outline, vtkTypeBool);
80
81protected:
83 ~vtkEarthSource() override = default;
84
86
87 double Radius;
90
91private:
92 vtkEarthSource(const vtkEarthSource&) = delete;
93 void operator=(const vtkEarthSource&) = delete;
94};
95
96#endif
create the continents of the Earth as a sphere
~vtkEarthSource() override=default
static vtkEarthSource * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkTypeBool Outline
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
a simple class to control print indentation
Definition vtkIndent.h:49
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only polydata as output.
int vtkTypeBool
Definition vtkABI.h:69
#define VTK_FLOAT_MAX
Definition vtkType.h:163