VTK  9.2.6
vtkParametricFunctionSource.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkParametricFunctionSource.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=========================================================================*/
59#ifndef vtkParametricFunctionSource_h
60#define vtkParametricFunctionSource_h
61
62#include "vtkFiltersSourcesModule.h" // For export macro
64
65class vtkCellArray;
67
68class VTKFILTERSSOURCES_EXPORT vtkParametricFunctionSource : public vtkPolyDataAlgorithm
69{
70public:
72 void PrintSelf(ostream& os, vtkIndent indent) override;
73
78
80
84 vtkGetObjectMacro(ParametricFunction, vtkParametricFunction);
86
88
93 vtkSetClampMacro(UResolution, int, 2, VTK_INT_MAX);
94 vtkGetMacro(UResolution, int);
96
98
103 vtkSetClampMacro(VResolution, int, 2, VTK_INT_MAX);
104 vtkGetMacro(VResolution, int);
106
108
113 vtkSetClampMacro(WResolution, int, 2, VTK_INT_MAX);
114 vtkGetMacro(WResolution, int);
116
118
125 vtkBooleanMacro(GenerateTextureCoordinates, vtkTypeBool);
126 vtkSetClampMacro(GenerateTextureCoordinates, vtkTypeBool, 0, 1);
127 vtkGetMacro(GenerateTextureCoordinates, vtkTypeBool);
129
131
137 vtkBooleanMacro(GenerateNormals, vtkTypeBool);
138 vtkSetClampMacro(GenerateNormals, vtkTypeBool, 0, 1);
139 vtkGetMacro(GenerateNormals, vtkTypeBool);
141
170 {
171 SCALAR_NONE = 0,
184 SCALAR_FUNCTION_DEFINED
185 };
186
188
192 vtkSetClampMacro(ScalarMode, int, SCALAR_NONE, SCALAR_FUNCTION_DEFINED);
193 vtkGetMacro(ScalarMode, int);
194 void SetScalarModeToNone(void) { this->SetScalarMode(SCALAR_NONE); }
195 void SetScalarModeToU(void) { this->SetScalarMode(SCALAR_U); }
196 void SetScalarModeToV(void) { this->SetScalarMode(SCALAR_V); }
197 void SetScalarModeToU0(void) { this->SetScalarMode(SCALAR_U0); }
198 void SetScalarModeToV0(void) { this->SetScalarMode(SCALAR_V0); }
199 void SetScalarModeToU0V0(void) { this->SetScalarMode(SCALAR_U0V0); }
200 void SetScalarModeToModulus(void) { this->SetScalarMode(SCALAR_MODULUS); }
201 void SetScalarModeToPhase(void) { this->SetScalarMode(SCALAR_PHASE); }
202 void SetScalarModeToQuadrant(void) { this->SetScalarMode(SCALAR_QUADRANT); }
203 void SetScalarModeToX(void) { this->SetScalarMode(SCALAR_X); }
204 void SetScalarModeToY(void) { this->SetScalarMode(SCALAR_Y); }
205 void SetScalarModeToZ(void) { this->SetScalarMode(SCALAR_Z); }
206 void SetScalarModeToDistance(void) { this->SetScalarMode(SCALAR_DISTANCE); }
207 void SetScalarModeToFunctionDefined(void) { this->SetScalarMode(SCALAR_FUNCTION_DEFINED); }
209
214
216
221 vtkSetMacro(OutputPointsPrecision, int);
222 vtkGetMacro(OutputPointsPrecision, int);
224
225protected:
228
229 // Usual data generation method
231 vtkInformation* info, vtkInformationVector** input, vtkInformationVector* output) override;
232
233 // Variables
235
243
244private:
245 // Create output depending on function dimension
246 void Produce1DOutput(vtkInformationVector* output);
247 void Produce2DOutput(vtkInformationVector* output);
248
260 void MakeTriangles(vtkCellArray* strips, int PtsU, int PtsV);
261
263 void operator=(const vtkParametricFunctionSource&) = delete;
264};
265
266#endif
object to represent cell connectivity
a simple class to control print indentation
Definition vtkIndent.h:49
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
tessellate parametric functions
void SetScalarModeToV0(void)
Get/Set the mode used for the scalar data.
int RequestData(vtkInformation *info, vtkInformationVector **input, vtkInformationVector *output) override
This is called by the superclass.
void SetScalarModeToY(void)
Get/Set the mode used for the scalar data.
void SetScalarModeToX(void)
Get/Set the mode used for the scalar data.
void SetScalarModeToU0(void)
Get/Set the mode used for the scalar data.
void SetScalarModeToU0V0(void)
Get/Set the mode used for the scalar data.
void SetScalarModeToV(void)
Get/Set the mode used for the scalar data.
void SetScalarModeToU(void)
Get/Set the mode used for the scalar data.
vtkMTimeType GetMTime() override
Return the MTime also considering the parametric function.
void SetScalarModeToPhase(void)
Get/Set the mode used for the scalar data.
SCALAR_MODE
Enumerate the supported scalar generation modes.
void SetScalarModeToZ(void)
Get/Set the mode used for the scalar data.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void SetScalarModeToDistance(void)
Get/Set the mode used for the scalar data.
void SetScalarModeToFunctionDefined(void)
Get/Set the mode used for the scalar data.
~vtkParametricFunctionSource() override
void SetScalarModeToNone(void)
Get/Set the mode used for the scalar data.
void SetScalarModeToQuadrant(void)
Get/Set the mode used for the scalar data.
void SetScalarModeToModulus(void)
Get/Set the mode used for the scalar data.
static vtkParametricFunctionSource * New()
Create a new instance with (50,50,50) points in the (u-v-w) directions.
virtual void SetParametricFunction(vtkParametricFunction *)
Specify the parametric function to use to generate the tessellation.
abstract interface for parametric functions
Superclass for algorithms that produce only polydata as output.
int vtkTypeBool
Definition vtkABI.h:69
vtkTypeUInt32 vtkMTimeType
Definition vtkType.h:287
#define VTK_INT_MAX
Definition vtkType.h:155