You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.8 KiB
54 lines
1.8 KiB
2 years ago
|
/*=========================================================================
|
||
|
|
||
|
Program: Visualization Toolkit
|
||
|
Module: $RCSfile: vtkStructuredGridToStructuredGridFilter.h,v $
|
||
|
|
||
|
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.
|
||
|
|
||
|
=========================================================================*/
|
||
|
// .NAME vtkStructuredGridToStructuredGridFilter - abstract filter class
|
||
|
// .SECTION Description
|
||
|
// vtkStructuredPointsToStructuredPointsFilter is an abstract filter class
|
||
|
// whose subclasses take on input a structured grid and generate a
|
||
|
// structured grid on output.
|
||
|
|
||
|
// .SECTION See Also
|
||
|
// vtkExtractGrid
|
||
|
|
||
|
#ifndef __vtkStructuredGridToStructuredGridFilter_h
|
||
|
#define __vtkStructuredGridToStructuredGridFilter_h
|
||
|
|
||
|
#include "vtkStructuredGridSource.h"
|
||
|
|
||
|
class VTK_FILTERING_EXPORT vtkStructuredGridToStructuredGridFilter : public vtkStructuredGridSource
|
||
|
{
|
||
|
public:
|
||
|
vtkTypeRevisionMacro(vtkStructuredGridToStructuredGridFilter,vtkStructuredGridSource);
|
||
|
void PrintSelf(ostream& os, vtkIndent indent);
|
||
|
|
||
|
// Description:
|
||
|
// Set / get the input Grid or filter.
|
||
|
void SetInput(vtkStructuredGrid *input);
|
||
|
vtkStructuredGrid *GetInput();
|
||
|
|
||
|
protected:
|
||
|
vtkStructuredGridToStructuredGridFilter();
|
||
|
~vtkStructuredGridToStructuredGridFilter();
|
||
|
|
||
|
virtual int FillInputPortInformation(int, vtkInformation*);
|
||
|
|
||
|
private:
|
||
|
vtkStructuredGridToStructuredGridFilter(const vtkStructuredGridToStructuredGridFilter&); // Not implemented.
|
||
|
void operator=(const vtkStructuredGridToStructuredGridFilter&); // Not implemented.
|
||
|
};
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|