VTK  9.1.0
vtkSuperquadricSource.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkSuperquadricSource.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=========================================================================*/
60#ifndef vtkSuperquadricSource_h
61#define vtkSuperquadricSource_h
62
63#include "vtkFiltersSourcesModule.h" // For export macro
65
66#define VTK_MAX_SUPERQUADRIC_RESOLUTION 1024
67#define VTK_MIN_SUPERQUADRIC_THICKNESS 1e-4
68#define VTK_MIN_SUPERQUADRIC_ROUNDNESS 1e-24
69
70class VTKFILTERSSOURCES_EXPORT vtkSuperquadricSource : public vtkPolyDataAlgorithm
71{
72public:
79
81 void PrintSelf(ostream& os, vtkIndent indent) override;
82
84
87 vtkSetVector3Macro(Center, double);
88 vtkGetVectorMacro(Center, double, 3);
90
92
95 vtkSetVector3Macro(Scale, double);
96 vtkGetVectorMacro(Scale, double, 3);
98
100
103 vtkGetMacro(ThetaResolution, int);
106
108
111 vtkGetMacro(PhiResolution, int);
112 void SetPhiResolution(int i);
114
116
121 vtkGetMacro(Thickness, double);
122 vtkSetClampMacro(Thickness, double, VTK_MIN_SUPERQUADRIC_THICKNESS, 1.0);
124
126
131 vtkGetMacro(PhiRoundness, double);
132 void SetPhiRoundness(double e);
134
136
141 vtkGetMacro(ThetaRoundness, double);
142 void SetThetaRoundness(double e);
144
146
149 vtkSetMacro(Size, double);
150 vtkGetMacro(Size, double);
152
154
158 vtkSetMacro(AxisOfSymmetry, int);
159 vtkGetMacro(AxisOfSymmetry, int);
160 void SetXAxisOfSymmetry() { this->SetAxisOfSymmetry(0); }
161 void SetYAxisOfSymmetry() { this->SetAxisOfSymmetry(1); }
162 void SetZAxisOfSymmetry() { this->SetAxisOfSymmetry(2); }
164
166
170 vtkBooleanMacro(Toroidal, vtkTypeBool);
171 vtkGetMacro(Toroidal, vtkTypeBool);
172 vtkSetMacro(Toroidal, vtkTypeBool);
174
176
181 vtkSetMacro(OutputPointsPrecision, int);
182 vtkGetMacro(OutputPointsPrecision, int);
184
185protected:
187 ~vtkSuperquadricSource() override = default;
188
191 double Thickness;
192 double Size;
196 double Center[3];
197 double Scale[3];
201
202private:
204 void operator=(const vtkSuperquadricSource&) = delete;
205};
206
207#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 polygonal superquadric centered at the origin
void SetPhiRoundness(double e)
Set/Get Superquadric north/south roundness.
~vtkSuperquadricSource() override=default
void SetZAxisOfSymmetry()
Set/Get axis of symmetry for superquadric (x axis: 0, y axis: 1, z axis: 2).
vtkSuperquadricSource(int res=16)
void SetPhiResolution(int i)
Set the number of points in the latitude direction.
void SetThetaRoundness(double e)
Set/Get Superquadric east/west roundness.
void SetYAxisOfSymmetry()
Set/Get axis of symmetry for superquadric (x axis: 0, y axis: 1, z axis: 2).
static vtkSuperquadricSource * New()
Create a default superquadric with a radius of 0.5, non-toroidal, spherical, and centered at the orig...
void SetXAxisOfSymmetry()
Set/Get axis of symmetry for superquadric (x axis: 0, y axis: 1, z axis: 2).
void SetThetaResolution(int i)
Set the number of points in the longitude direction.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
int vtkTypeBool
Definition: vtkABI.h:69
#define VTK_MIN_SUPERQUADRIC_THICKNESS