VTK  9.2.6
vtkSphereSource.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkSphereSource.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 =========================================================================*/
148 #ifndef vtkSphereSource_h
149 #define vtkSphereSource_h
150 
151 #include "vtkFiltersSourcesModule.h" // For export macro
152 #include "vtkPolyDataAlgorithm.h"
153 
154 class VTKFILTERSSOURCES_EXPORT vtkSphereSource : public vtkPolyDataAlgorithm
155 {
156 public:
158 
162  void PrintSelf(ostream& os, vtkIndent indent) override;
164 
169  static vtkSphereSource* New();
170 
172 
175  vtkSetClampMacro(Radius, double, 0.0, VTK_DOUBLE_MAX);
176  vtkGetMacro(Radius, double);
178 
180 
183  vtkSetVector3Macro(Center, double);
184  vtkGetVectorMacro(Center, double, 3);
186 
188 
192  vtkSetClampMacro(ThetaResolution, int, 3, VTK_INT_MAX);
193  vtkGetMacro(ThetaResolution, int);
195 
197 
201  vtkSetClampMacro(PhiResolution, int, 3, VTK_INT_MAX);
202  vtkGetMacro(PhiResolution, int);
204 
206 
209  vtkSetClampMacro(StartTheta, double, 0.0, 360.0);
210  vtkGetMacro(StartTheta, double);
212 
214 
217  vtkSetClampMacro(EndTheta, double, 0.0, 360.0);
218  vtkGetMacro(EndTheta, double);
220 
222 
226  vtkSetClampMacro(StartPhi, double, 0.0, 360.0);
227  vtkGetMacro(StartPhi, double);
229 
231 
234  vtkSetClampMacro(EndPhi, double, 0.0, 360.0);
235  vtkGetMacro(EndPhi, double);
237 
239 
247  vtkSetMacro(LatLongTessellation, vtkTypeBool);
248  vtkGetMacro(LatLongTessellation, vtkTypeBool);
249  vtkBooleanMacro(LatLongTessellation, vtkTypeBool);
251 
253 
258  vtkSetMacro(OutputPointsPrecision, int);
259  vtkGetMacro(OutputPointsPrecision, int);
261 
263 
267  vtkSetMacro(GenerateNormals, vtkTypeBool);
268  vtkGetMacro(GenerateNormals, vtkTypeBool);
269  vtkBooleanMacro(GenerateNormals, vtkTypeBool);
271 
272 protected:
273  vtkSphereSource(int res = 8);
274  ~vtkSphereSource() override = default;
275 
278 
279  double Radius;
280  double Center[3];
283  double StartTheta;
284  double EndTheta;
285  double StartPhi;
286  double EndPhi;
290 
291 private:
292  vtkSphereSource(const vtkSphereSource&) = delete;
293  void operator=(const vtkSphereSource&) = delete;
294 };
295 
296 #endif
a simple class to control print indentation
Definition: vtkIndent.h:119
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only polydata as output.
create a polygonal sphere centered at the origin
static vtkSphereSource * New()
Construct sphere with radius=0.5 and default resolution 8 in both Phi and Theta directions.
vtkSphereSource(int res=8)
~vtkSphereSource() override=default
vtkTypeBool LatLongTessellation
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for obtaining type information, and printing.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
vtkTypeBool GenerateNormals
int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
int vtkTypeBool
Definition: vtkABI.h:69
#define VTK_DOUBLE_MAX
Definition: vtkType.h:165
#define VTK_INT_MAX
Definition: vtkType.h:155