VTK  9.5.20250705
vtkQuadraturePointsGenerator.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
23#ifndef vtkQuadraturePointsGenerator_h
24#define vtkQuadraturePointsGenerator_h
25
26#include "vtkDataSetAlgorithm.h"
27#include "vtkFiltersGeneralModule.h" // For export macro
28
29VTK_ABI_NAMESPACE_BEGIN
30class vtkDataSet;
31class vtkPolyData;
33class vtkInformation;
35
36class VTKFILTERSGENERAL_EXPORT vtkQuadraturePointsGenerator : public vtkDataSetAlgorithm
37{
38public:
40 void PrintSelf(ostream& os, vtkIndent indent) override;
42
43protected:
44 int FillOutputPortInformation(int port, vtkInformation* info) override;
46 vtkInformation* req, vtkInformationVector** input, vtkInformationVector* output) override;
47
51 int Generate(vtkDataSet* datasetIn, vtkDataArray* offsets, vtkPolyData* pdOut);
52
54 vtkDataSet* datasetIn, vtkDataArray* data, vtkDataArray* offsets, vtkPolyData* pdOut);
55
58
59private:
61 void operator=(const vtkQuadraturePointsGenerator&) = delete;
62};
63
64VTK_ABI_NAMESPACE_END
65#endif
abstract superclass for arrays of numeric data
Superclass for algorithms that produce output of the same type as input.
abstract class to specify dataset behavior
Definition vtkDataSet.h:165
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
concrete dataset represents vertices, lines, polygons, and triangle strips
Create a vtkPolyData on its output containing the vertices for the quadrature points for one of the v...
int RequestData(vtkInformation *req, vtkInformationVector **input, vtkInformationVector *output) override
This is called within ProcessRequest when a request asks the algorithm to do its work.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int Generate(vtkDataSet *datasetIn, vtkDataArray *offsets, vtkPolyData *pdOut)
Generate the point set .
~vtkQuadraturePointsGenerator() override
int GenerateField(vtkDataSet *datasetIn, vtkDataArray *data, vtkDataArray *offsets, vtkPolyData *pdOut)
int FillOutputPortInformation(int port, vtkInformation *info) override
Fill the output port information objects for this algorithm.
static vtkQuadraturePointsGenerator * New()
dataset represents arbitrary combinations of all possible cell types