VTK  9.1.0
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=========================================================================*/
156#ifndef vtkParametricFunctionSource_h
157#define vtkParametricFunctionSource_h
158
159#include "vtkFiltersSourcesModule.h" // For export macro
160#include "vtkPolyDataAlgorithm.h"
161
162class vtkCellArray;
164
165class VTKFILTERSSOURCES_EXPORT vtkParametricFunctionSource : public vtkPolyDataAlgorithm
166{
167public:
169 void PrintSelf(ostream& os, vtkIndent indent) override;
170
175
177
181 vtkGetObjectMacro(ParametricFunction, vtkParametricFunction);
183
185
190 vtkSetClampMacro(UResolution, int, 2, VTK_INT_MAX);
191 vtkGetMacro(UResolution, int);
193
195
200 vtkSetClampMacro(VResolution, int, 2, VTK_INT_MAX);
201 vtkGetMacro(VResolution, int);
203
205
210 vtkSetClampMacro(WResolution, int, 2, VTK_INT_MAX);
211 vtkGetMacro(WResolution, int);
213
215
222 vtkBooleanMacro(GenerateTextureCoordinates, vtkTypeBool);
223 vtkSetClampMacro(GenerateTextureCoordinates, vtkTypeBool, 0, 1);
224 vtkGetMacro(GenerateTextureCoordinates, vtkTypeBool);
226
228
234 vtkBooleanMacro(GenerateNormals, vtkTypeBool);
235 vtkSetClampMacro(GenerateNormals, vtkTypeBool, 0, 1);
236 vtkGetMacro(GenerateNormals, vtkTypeBool);
238
267 {
268 SCALAR_NONE = 0,
281 SCALAR_FUNCTION_DEFINED
282 };
283
285
289 vtkSetClampMacro(ScalarMode, int, SCALAR_NONE, SCALAR_FUNCTION_DEFINED);
290 vtkGetMacro(ScalarMode, int);
291 void SetScalarModeToNone(void) { this->SetScalarMode(SCALAR_NONE); }
292 void SetScalarModeToU(void) { this->SetScalarMode(SCALAR_U); }
293 void SetScalarModeToV(void) { this->SetScalarMode(SCALAR_V); }
294 void SetScalarModeToU0(void) { this->SetScalarMode(SCALAR_U0); }
295 void SetScalarModeToV0(void) { this->SetScalarMode(SCALAR_V0); }
296 void SetScalarModeToU0V0(void) { this->SetScalarMode(SCALAR_U0V0); }
297 void SetScalarModeToModulus(void) { this->SetScalarMode(SCALAR_MODULUS); }
298 void SetScalarModeToPhase(void) { this->SetScalarMode(SCALAR_PHASE); }
299 void SetScalarModeToQuadrant(void) { this->SetScalarMode(SCALAR_QUADRANT); }
300 void SetScalarModeToX(void) { this->SetScalarMode(SCALAR_X); }
301 void SetScalarModeToY(void) { this->SetScalarMode(SCALAR_Y); }
302 void SetScalarModeToZ(void) { this->SetScalarMode(SCALAR_Z); }
303 void SetScalarModeToDistance(void) { this->SetScalarMode(SCALAR_DISTANCE); }
304 void SetScalarModeToFunctionDefined(void) { this->SetScalarMode(SCALAR_FUNCTION_DEFINED); }
306
311
313
318 vtkSetMacro(OutputPointsPrecision, int);
319 vtkGetMacro(OutputPointsPrecision, int);
321
322protected:
325
326 // Usual data generation method
329
330 // Variables
332
340
341private:
342 // Create output depending on function dimension
343 void Produce1DOutput(vtkInformationVector* output);
344 void Produce2DOutput(vtkInformationVector* output);
345
357 void MakeTriangles(vtkCellArray* strips, int PtsU, int PtsV);
358
360 void operator=(const vtkParametricFunctionSource&) = delete;
361};
362
363#endif
object to represent cell connectivity
Definition: vtkCellArray.h:290
a simple class to control print indentation
Definition: vtkIndent.h:113
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.
vtkParametricFunction * ParametricFunction
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.
@ info
Definition: vtkX3D.h:382
int vtkTypeBool
Definition: vtkABI.h:69
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:287
#define VTK_INT_MAX
Definition: vtkType.h:155