VTK  9.0.1
vtkQuadraturePointsGenerator.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkQuadraturePointsGenerator.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 =========================================================================*/
32 #ifndef vtkQuadraturePointsGenerator_h
33 #define vtkQuadraturePointsGenerator_h
34 
35 #include "vtkFiltersGeneralModule.h" // For export macro
36 #include "vtkPolyDataAlgorithm.h"
37 
38 class vtkPolyData;
40 class vtkInformation;
42 
43 class VTKFILTERSGENERAL_EXPORT vtkQuadraturePointsGenerator : public vtkPolyDataAlgorithm
44 {
45 public:
47  void PrintSelf(ostream& os, vtkIndent indent) override;
49 
50 protected:
52 
54  vtkInformation* req, vtkInformationVector** input, vtkInformationVector* output) override;
55 
59  int Generate(vtkUnstructuredGrid* usgIn, vtkDataArray* offsets, vtkPolyData* pdOut);
60 
62  vtkUnstructuredGrid* usgIn, vtkDataArray* data, vtkDataArray* offsets, vtkPolyData* pdOut);
63 
66 
67 private:
69  void operator=(const vtkQuadraturePointsGenerator&) = delete;
70 };
71 
72 #endif
vtkQuadraturePointsGenerator::GenerateField
int GenerateField(vtkUnstructuredGrid *usgIn, vtkDataArray *data, vtkDataArray *offsets, vtkPolyData *pdOut)
vtkQuadraturePointsGenerator
Create a vtkPolyData on its output containing the vertices for the quadrature points for one of the v...
Definition: vtkQuadraturePointsGenerator.h:44
vtkQuadraturePointsGenerator::~vtkQuadraturePointsGenerator
~vtkQuadraturePointsGenerator() override
vtkX3D::data
@ data
Definition: vtkX3D.h:321
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:36
vtkQuadraturePointsGenerator::vtkQuadraturePointsGenerator
vtkQuadraturePointsGenerator()
vtkDataArray
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:50
vtkPolyDataAlgorithm.h
vtkQuadraturePointsGenerator::FillInputPortInformation
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
vtkX3D::port
@ port
Definition: vtkX3D.h:453
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:34
vtkQuadraturePointsGenerator::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkQuadraturePointsGenerator::Generate
int Generate(vtkUnstructuredGrid *usgIn, vtkDataArray *offsets, vtkPolyData *pdOut)
Generate the point set .
vtkQuadraturePointsGenerator::New
static vtkQuadraturePointsGenerator * New()
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:65
vtkX3D::info
@ info
Definition: vtkX3D.h:382
vtkPolyData
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:85
vtkUnstructuredGrid
dataset represents arbitrary combinations of all possible cell types
Definition: vtkUnstructuredGrid.h:93
vtkQuadraturePointsGenerator::RequestData
int RequestData(vtkInformation *req, vtkInformationVector **input, vtkInformationVector *output) override
This is called by the superclass.
vtkPolyDataAlgorithm
Superclass for algorithms that produce only polydata as output.
Definition: vtkPolyDataAlgorithm.h:42