VTK  9.2.5
vtkRegularPolygonSource.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkRegularPolygonSource.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 =========================================================================*/
99 #ifndef vtkRegularPolygonSource_h
100 #define vtkRegularPolygonSource_h
101 
102 #include "vtkFiltersSourcesModule.h" // For export macro
103 #include "vtkPolyDataAlgorithm.h"
104 
105 class VTKFILTERSSOURCES_EXPORT vtkRegularPolygonSource : public vtkPolyDataAlgorithm
106 {
107 public:
109 
114  void PrintSelf(ostream& os, vtkIndent indent) override;
116 
118 
122  vtkSetClampMacro(NumberOfSides, int, 3, VTK_INT_MAX);
123  vtkGetMacro(NumberOfSides, int);
125 
127 
131  vtkSetVector3Macro(Center, double);
132  vtkGetVectorMacro(Center, double, 3);
134 
136 
141  vtkSetVector3Macro(Normal, double);
142  vtkGetVectorMacro(Normal, double, 3);
144 
146 
149  vtkSetMacro(Radius, double);
150  vtkGetMacro(Radius, double);
152 
154 
157  vtkSetMacro(GeneratePolygon, vtkTypeBool);
158  vtkGetMacro(GeneratePolygon, vtkTypeBool);
159  vtkBooleanMacro(GeneratePolygon, vtkTypeBool);
161 
163 
166  vtkSetMacro(GeneratePolyline, vtkTypeBool);
167  vtkGetMacro(GeneratePolyline, vtkTypeBool);
168  vtkBooleanMacro(GeneratePolyline, vtkTypeBool);
170 
172 
177  vtkSetMacro(OutputPointsPrecision, int);
178  vtkGetMacro(OutputPointsPrecision, int);
180 
181 protected:
183  ~vtkRegularPolygonSource() override = default;
184 
186 
188  double Center[3];
189  double Normal[3];
190  double Radius;
194 
195 private:
197  void operator=(const vtkRegularPolygonSource&) = delete;
198 };
199 
200 #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 regular, n-sided polygon and/or polyline
~vtkRegularPolygonSource() override=default
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
static vtkRegularPolygonSource * New()
Standard methods for instantiation, obtaining type and printing instance values.
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for instantiation, obtaining type and printing instance values.
@ Normal
Definition: vtkX3D.h:51
int vtkTypeBool
Definition: vtkABI.h:69
#define VTK_INT_MAX
Definition: vtkType.h:155