You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.3 KiB
C
69 lines
2.3 KiB
C
|
3 weeks ago
|
/*=========================================================================
|
||
|
|
|
||
|
|
Program: Visualization Toolkit
|
||
|
|
Module: vtkPCellDataToPointData.h
|
||
|
|
|
||
|
|
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
|
||
|
|
All rights reserved.
|
||
|
|
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
|
||
|
|
|
||
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
||
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||
|
|
PURPOSE. See the above copyright notice for more information.
|
||
|
|
|
||
|
|
=========================================================================*/
|
||
|
|
/**
|
||
|
|
* @class vtkPCellDataToPointData
|
||
|
|
* @brief Compute point arrays from cell arrays.
|
||
|
|
*
|
||
|
|
* Like it super class, this filter averages the cell data around
|
||
|
|
* a point to get new point data. This subclass requests a layer of
|
||
|
|
* ghost cells to make the results invariant to pieces. There is a
|
||
|
|
* "PieceInvariant" flag that lets the user change the behavior
|
||
|
|
* of the filter to that of its superclass.
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef vtkPCellDataToPointData_h
|
||
|
|
#define vtkPCellDataToPointData_h
|
||
|
|
|
||
|
|
#include "vtkFiltersParallelModule.h" // For export macro
|
||
|
|
#include "vtkCellDataToPointData.h"
|
||
|
|
|
||
|
|
class VTKFILTERSPARALLEL_EXPORT vtkPCellDataToPointData : public vtkCellDataToPointData
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
vtkTypeMacro(vtkPCellDataToPointData,vtkCellDataToPointData);
|
||
|
|
void PrintSelf(ostream& os, vtkIndent indent);
|
||
|
|
|
||
|
|
static vtkPCellDataToPointData *New();
|
||
|
|
|
||
|
|
//@{
|
||
|
|
/**
|
||
|
|
* To get piece invariance, this filter has to request an
|
||
|
|
* extra ghost level. By default piece invariance is on.
|
||
|
|
*/
|
||
|
|
vtkSetMacro(PieceInvariant, int);
|
||
|
|
vtkGetMacro(PieceInvariant, int);
|
||
|
|
vtkBooleanMacro(PieceInvariant, int);
|
||
|
|
//@}
|
||
|
|
|
||
|
|
protected:
|
||
|
|
vtkPCellDataToPointData();
|
||
|
|
~vtkPCellDataToPointData() {}
|
||
|
|
|
||
|
|
// Usual data generation method
|
||
|
|
virtual int RequestData(vtkInformation* request,
|
||
|
|
vtkInformationVector** inputVector,
|
||
|
|
vtkInformationVector* outputVector);
|
||
|
|
virtual int RequestUpdateExtent(vtkInformation*,
|
||
|
|
vtkInformationVector**,
|
||
|
|
vtkInformationVector*);
|
||
|
|
|
||
|
|
int PieceInvariant;
|
||
|
|
private:
|
||
|
|
vtkPCellDataToPointData(const vtkPCellDataToPointData&) VTK_DELETE_FUNCTION;
|
||
|
|
void operator=(const vtkPCellDataToPointData&) VTK_DELETE_FUNCTION;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|