VTK
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 =========================================================================*/
33 #ifndef vtkQuadraturePointsGenerator_h
34 #define vtkQuadraturePointsGenerator_h
35 
36 #include "vtkPolyDataAlgorithm.h"
37 
38 class vtkPolyData;
40 class vtkInformation;
42 
44 {
45 public:
47  void PrintSelf(ostream& os, vtkIndent indent);
49 
50 protected:
52 
54 
56 
57  int Generate(vtkUnstructuredGrid *usgIn,
58  vtkIdTypeArray* offsets,
59  vtkPolyData *pdOut);
61 
62  int GenerateField(vtkUnstructuredGrid *usgIn,
64  vtkIdTypeArray* offsets,
65  vtkPolyData* pdOut);
66 
69 private:
71  void operator=(const vtkQuadraturePointsGenerator &); // Not implemented
72 };
73 
74 #endif