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=========================================================================*/
29
30#ifndef vtkRegularPolygonSource_h
31#define vtkRegularPolygonSource_h
32
33#include "vtkFiltersSourcesModule.h" // For export macro
35
36class VTKFILTERSSOURCES_EXPORT vtkRegularPolygonSource : public vtkPolyDataAlgorithm
37{
38public:
40
45 void PrintSelf(ostream& os, vtkIndent indent) override;
47
49
53 vtkSetClampMacro(NumberOfSides, int, 3, VTK_INT_MAX);
54 vtkGetMacro(NumberOfSides, int);
56
58
62 vtkSetVector3Macro(Center, double);
63 vtkGetVectorMacro(Center, double, 3);
65
67
72 vtkSetVector3Macro(Normal, double);
73 vtkGetVectorMacro(Normal, double, 3);
75
77
80 vtkSetMacro(Radius, double);
81 vtkGetMacro(Radius, double);
83
85
90 vtkBooleanMacro(GeneratePolygon, vtkTypeBool);
92
94
99 vtkBooleanMacro(GeneratePolyline, vtkTypeBool);
101
103
108 vtkSetMacro(OutputPointsPrecision, int);
109 vtkGetMacro(OutputPointsPrecision, int);
111
112protected:
114 ~vtkRegularPolygonSource() override = default;
115
117
119 double Center[3];
120 double Normal[3];
121 double Radius;
125
126private:
128 void operator=(const vtkRegularPolygonSource&) = delete;
129};
130
131#endif
a simple class to control print indentation
Definition vtkIndent.h:40
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
~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