VTK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
vtkPOutlineFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPOutlineFilter.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
26 #ifndef __vtkPOutlineFilter_h
27 #define __vtkPOutlineFilter_h
28 
29 #include "vtkFiltersParallelModule.h" // For export macro
30 #include "vtkPolyDataAlgorithm.h"
31 class vtkOutlineSource;
32 class vtkMultiProcessController;
33 
34 class VTKFILTERSPARALLEL_EXPORT vtkPOutlineFilter : public vtkPolyDataAlgorithm
35 {
36 public:
37  static vtkPOutlineFilter *New();
39  void PrintSelf(ostream& os, vtkIndent indent);
40 
42 
43  virtual void SetController(vtkMultiProcessController*);
44  vtkGetObjectMacro(Controller, vtkMultiProcessController);
46 
47 protected:
50 
51  vtkMultiProcessController* Controller;
53  virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
54  virtual int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
55  virtual int FillInputPortInformation(int port, vtkInformation *info);
56 
57 private:
58  vtkPOutlineFilter(const vtkPOutlineFilter&); // Not implemented.
59  void operator=(const vtkPOutlineFilter&); // Not implemented.
60 };
61 #endif
create wireframe outline for arbitrary data set
virtual int FillInputPortInformation(int port, vtkInformation *info)
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
static vtkPolyDataAlgorithm * New()
void PrintSelf(ostream &os, vtkIndent indent)
Superclass for algorithms that produce only polydata as output.
virtual int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
create wireframe outline around bounding box
vtkMultiProcessController * Controller
vtkOutlineSource * OutlineSource