VTK
vtkPCellDataToPointData.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPCellDataToPointData.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 =========================================================================*/
26 #ifndef vtkPCellDataToPointData_h
27 #define vtkPCellDataToPointData_h
28 
29 #include "vtkFiltersParallelModule.h" // For export macro
30 #include "vtkCellDataToPointData.h"
31 
32 class VTKFILTERSPARALLEL_EXPORT vtkPCellDataToPointData : public vtkCellDataToPointData
33 {
34 public:
36  void PrintSelf(ostream& os, vtkIndent indent) override;
37 
39 
41 
45  vtkSetMacro(PieceInvariant, vtkTypeBool);
46  vtkGetMacro(PieceInvariant, vtkTypeBool);
47  vtkBooleanMacro(PieceInvariant, vtkTypeBool);
49 
50 protected:
53 
54  // Usual data generation method
56  vtkInformationVector** inputVector,
57  vtkInformationVector* outputVector) override;
60  vtkInformationVector*) override;
61 
63 private:
65  void operator=(const vtkPCellDataToPointData&) = delete;
66 };
67 
68 #endif
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:42
vtkPCellDataToPointData::New
static vtkPCellDataToPointData * New()
vtkPCellDataToPointData::RequestUpdateExtent
int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when each filter in the pipeline decides what portion of its inp...
vtkCellDataToPointData.h
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:40
vtkCellDataToPointData
map cell data to point data
Definition: vtkCellDataToPointData.h:58
vtkPCellDataToPointData
Compute point arrays from cell arrays.
Definition: vtkPCellDataToPointData.h:33
vtkPCellDataToPointData::vtkPCellDataToPointData
vtkPCellDataToPointData()
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:87
vtkPCellDataToPointData::~vtkPCellDataToPointData
~vtkPCellDataToPointData() override
Definition: vtkPCellDataToPointData.h:52
vtkPCellDataToPointData::RequestData
int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
This is called within ProcessRequest when a request asks the algorithm to do its work.
vtkPCellDataToPointData::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkTypeBool
int vtkTypeBool
Definition: vtkABI.h:69
vtkPCellDataToPointData::PieceInvariant
vtkTypeBool PieceInvariant
Definition: vtkPCellDataToPointData.h:62