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.
44 lines
1.7 KiB
44 lines
1.7 KiB
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: $RCSfile: vtkStructuredGridOutlineFilter.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 vtkStructuredGridOutlineFilter - create wireframe outline for structured grid
|
|
// .SECTION Description
|
|
// vtkStructuredGridOutlineFilter is a filter that generates a wireframe
|
|
// outline of a structured grid (vtkStructuredGrid). Structured data is
|
|
// topologically a cube, so the outline will have 12 "edges".
|
|
|
|
#ifndef __vtkStructuredGridOutlineFilter_h
|
|
#define __vtkStructuredGridOutlineFilter_h
|
|
|
|
#include "vtkPolyDataAlgorithm.h"
|
|
|
|
class VTK_GRAPHICS_EXPORT vtkStructuredGridOutlineFilter : public vtkPolyDataAlgorithm
|
|
{
|
|
public:
|
|
static vtkStructuredGridOutlineFilter *New();
|
|
vtkTypeRevisionMacro(vtkStructuredGridOutlineFilter,vtkPolyDataAlgorithm);
|
|
|
|
protected:
|
|
vtkStructuredGridOutlineFilter() {};
|
|
~vtkStructuredGridOutlineFilter() {};
|
|
|
|
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
|
|
virtual int FillInputPortInformation(int port, vtkInformation *info);
|
|
|
|
private:
|
|
vtkStructuredGridOutlineFilter(const vtkStructuredGridOutlineFilter&); // Not implemented.
|
|
void operator=(const vtkStructuredGridOutlineFilter&); // Not implemented.
|
|
};
|
|
|
|
#endif
|
|
|