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.
50 lines
1.7 KiB
50 lines
1.7 KiB
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: $RCSfile: vtkGenericOutlineFilter.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 vtkGenericOutlineFilter - create wireframe outline for arbitrary
|
|
// generic data set
|
|
// .SECTION Description
|
|
// vtkGenericOutlineFilter is a filter that generates a wireframe outline of
|
|
// any generic data set. The outline consists of the twelve edges of the
|
|
// generic dataset bounding box.
|
|
|
|
#ifndef __vtkGenericOutlineFilter_h
|
|
#define __vtkGenericOutlineFilter_h
|
|
|
|
#include "vtkPolyDataAlgorithm.h"
|
|
|
|
class vtkOutlineSource;
|
|
|
|
class VTK_GENERIC_FILTERING_EXPORT vtkGenericOutlineFilter : public vtkPolyDataAlgorithm
|
|
{
|
|
public:
|
|
static vtkGenericOutlineFilter *New();
|
|
vtkTypeRevisionMacro(vtkGenericOutlineFilter,vtkPolyDataAlgorithm);
|
|
|
|
protected:
|
|
vtkGenericOutlineFilter();
|
|
~vtkGenericOutlineFilter();
|
|
|
|
vtkOutlineSource *OutlineSource;
|
|
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
|
|
int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
|
|
|
|
int FillInputPortInformation(int, vtkInformation*);
|
|
|
|
private:
|
|
vtkGenericOutlineFilter(const vtkGenericOutlineFilter&); // Not implemented.
|
|
void operator=(const vtkGenericOutlineFilter&); // Not implemented.
|
|
};
|
|
|
|
#endif
|
|
|