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.
55 lines
1.8 KiB
55 lines
1.8 KiB
2 years ago
|
/*=========================================================================
|
||
|
|
||
|
Program: Visualization Toolkit
|
||
|
Module: $RCSfile: vtkRectilinearGridToPolyDataFilter.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 vtkRectilinearGridToPolyDataFilter - abstract filter class
|
||
|
// .SECTION Description
|
||
|
// vtkRectilinearGridToPolyDataFilter is a filter whose subclasses take as
|
||
|
// input rectilinear grid datasets and generate polygonal data on output.
|
||
|
|
||
|
// .SECTION See Also
|
||
|
// vtkRectilinearGridGeometryFilter vtkRectilinearGridOutlineFilter
|
||
|
|
||
|
#ifndef __vtkRectilinearGridToPolyDataFilter_h
|
||
|
#define __vtkRectilinearGridToPolyDataFilter_h
|
||
|
|
||
|
#include "vtkPolyDataSource.h"
|
||
|
|
||
|
class vtkRectilinearGrid;
|
||
|
|
||
|
class VTK_FILTERING_EXPORT vtkRectilinearGridToPolyDataFilter : public vtkPolyDataSource
|
||
|
{
|
||
|
public:
|
||
|
vtkTypeRevisionMacro(vtkRectilinearGridToPolyDataFilter,vtkPolyDataSource);
|
||
|
void PrintSelf(ostream& os, vtkIndent indent);
|
||
|
|
||
|
// Description:
|
||
|
// Set / get the input Grid or filter.
|
||
|
void SetInput(vtkRectilinearGrid *input);
|
||
|
vtkRectilinearGrid *GetInput();
|
||
|
|
||
|
protected:
|
||
|
vtkRectilinearGridToPolyDataFilter();
|
||
|
~vtkRectilinearGridToPolyDataFilter();
|
||
|
|
||
|
virtual int FillInputPortInformation(int, vtkInformation*);
|
||
|
|
||
|
private:
|
||
|
vtkRectilinearGridToPolyDataFilter(const vtkRectilinearGridToPolyDataFilter&); // Not implemented.
|
||
|
void operator=(const vtkRectilinearGridToPolyDataFilter&); // Not implemented.
|
||
|
};
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|