VTK  9.1.0
vtkTexturedSphereSource.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkTexturedSphereSource.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=========================================================================*/
35#ifndef vtkTexturedSphereSource_h
36#define vtkTexturedSphereSource_h
37
38#include "vtkFiltersSourcesModule.h" // For export macro
40
41class VTKFILTERSSOURCES_EXPORT vtkTexturedSphereSource : public vtkPolyDataAlgorithm
42{
43public:
45 void PrintSelf(ostream& os, vtkIndent indent) override;
46
52
54
57 vtkSetClampMacro(Radius, double, 0.0, VTK_DOUBLE_MAX);
58 vtkGetMacro(Radius, double);
60
62
65 vtkSetClampMacro(ThetaResolution, int, 4, VTK_INT_MAX);
66 vtkGetMacro(ThetaResolution, int);
68
70
73 vtkSetClampMacro(PhiResolution, int, 4, VTK_INT_MAX);
74 vtkGetMacro(PhiResolution, int);
76
78
81 vtkSetClampMacro(Theta, double, 0.0, 360.0);
82 vtkGetMacro(Theta, double);
84
86
89 vtkSetClampMacro(Phi, double, 0.0, 180.0);
90 vtkGetMacro(Phi, double);
92
94
99 vtkSetMacro(OutputPointsPrecision, int);
100 vtkGetMacro(OutputPointsPrecision, int);
102
103protected:
105 ~vtkTexturedSphereSource() override = default;
106
108 double Radius;
109 double Theta;
110 double Phi;
114
115private:
117 void operator=(const vtkTexturedSphereSource&) = delete;
118};
119
120#endif
a simple class to control print indentation
Definition: vtkIndent.h:43
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only polydata as output.
create a sphere centered at the origin
static vtkTexturedSphereSource * New()
Construct sphere with radius=0.5 and default resolution 8 in both Phi and Theta directions.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkTexturedSphereSource(int res=8)
~vtkTexturedSphereSource() override=default
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
#define VTK_DOUBLE_MAX
Definition: vtkType.h:165
#define VTK_INT_MAX
Definition: vtkType.h:155