VTK  9.2.6
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=========================================================================*/
27#ifndef vtkRegularPolygonSource_h
28#define vtkRegularPolygonSource_h
29
30#include "vtkFiltersSourcesModule.h" // For export macro
32
33class VTKFILTERSSOURCES_EXPORT vtkRegularPolygonSource : public vtkPolyDataAlgorithm
34{
35public:
37
42 void PrintSelf(ostream& os, vtkIndent indent) override;
44
46
50 vtkSetClampMacro(NumberOfSides, int, 3, VTK_INT_MAX);
51 vtkGetMacro(NumberOfSides, int);
53
55
59 vtkSetVector3Macro(Center, double);
60 vtkGetVectorMacro(Center, double, 3);
62
64
69 vtkSetVector3Macro(Normal, double);
70 vtkGetVectorMacro(Normal, double, 3);
72
74
77 vtkSetMacro(Radius, double);
78 vtkGetMacro(Radius, double);
80
82
85 vtkSetMacro(GeneratePolygon, vtkTypeBool);
86 vtkGetMacro(GeneratePolygon, vtkTypeBool);
87 vtkBooleanMacro(GeneratePolygon, vtkTypeBool);
89
91
94 vtkSetMacro(GeneratePolyline, vtkTypeBool);
95 vtkGetMacro(GeneratePolyline, vtkTypeBool);
96 vtkBooleanMacro(GeneratePolyline, vtkTypeBool);
98
100
105 vtkSetMacro(OutputPointsPrecision, int);
106 vtkGetMacro(OutputPointsPrecision, int);
108
109protected:
111 ~vtkRegularPolygonSource() override = default;
112
114
116 double Center[3];
117 double Normal[3];
118 double Radius;
122
123private:
125 void operator=(const vtkRegularPolygonSource&) = delete;
126};
127
128#endif
a simple class to control print indentation
Definition vtkIndent.h:34
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.
int vtkTypeBool
Definition vtkABI.h:69
#define VTK_INT_MAX
Definition vtkType.h:155