VTK  9.4.20250305
vtkSuperquadricSource.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
144#ifndef vtkSuperquadricSource_h
145#define vtkSuperquadricSource_h
146
147#include "vtkFiltersSourcesModule.h" // For export macro
148#include "vtkPolyDataAlgorithm.h"
149
150#define VTK_MAX_SUPERQUADRIC_RESOLUTION 1024
151#define VTK_MIN_SUPERQUADRIC_THICKNESS 1e-4
152#define VTK_MIN_SUPERQUADRIC_ROUNDNESS 1e-24
153
154VTK_ABI_NAMESPACE_BEGIN
155class VTKFILTERSSOURCES_EXPORT vtkSuperquadricSource : public vtkPolyDataAlgorithm
156{
157public:
164
166 void PrintSelf(ostream& os, vtkIndent indent) override;
167
169
172 vtkSetVector3Macro(Center, double);
173 vtkGetVectorMacro(Center, double, 3);
175
177
180 vtkSetVector3Macro(Scale, double);
181 vtkGetVectorMacro(Scale, double, 3);
183
185
188 vtkGetMacro(ThetaResolution, int);
191
193
196 vtkGetMacro(PhiResolution, int);
197 void SetPhiResolution(int i);
199
201
206 vtkGetMacro(Thickness, double);
207 vtkSetClampMacro(Thickness, double, VTK_MIN_SUPERQUADRIC_THICKNESS, 1.0);
209
211
216 vtkGetMacro(PhiRoundness, double);
217 void SetPhiRoundness(double e);
219
221
226 vtkGetMacro(ThetaRoundness, double);
227 void SetThetaRoundness(double e);
229
231
234 vtkSetMacro(Size, double);
235 vtkGetMacro(Size, double);
237
239
243 vtkSetMacro(AxisOfSymmetry, int);
244 vtkGetMacro(AxisOfSymmetry, int);
245 void SetXAxisOfSymmetry() { this->SetAxisOfSymmetry(0); }
246 void SetYAxisOfSymmetry() { this->SetAxisOfSymmetry(1); }
247 void SetZAxisOfSymmetry() { this->SetAxisOfSymmetry(2); }
249
251
255 vtkBooleanMacro(Toroidal, vtkTypeBool);
256 vtkGetMacro(Toroidal, vtkTypeBool);
257 vtkSetMacro(Toroidal, vtkTypeBool);
259
261
266 vtkSetMacro(OutputPointsPrecision, int);
267 vtkGetMacro(OutputPointsPrecision, int);
269
270protected:
272 ~vtkSuperquadricSource() override = default;
273
276 double Thickness;
277 double Size;
282 double Center[3];
283 double Scale[3];
287
288private:
290 void operator=(const vtkSuperquadricSource&) = delete;
291};
292
293VTK_ABI_NAMESPACE_END
294#endif
a simple class to control print indentation
Definition vtkIndent.h:108
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
int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
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:64
#define VTK_MIN_SUPERQUADRIC_THICKNESS