VTK
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 "vtkPolyDataAlgorithm.h"
30 class vtkOutlineSource;
32 
34 {
35 public:
36  static vtkPOutlineFilter *New();
38  void PrintSelf(ostream& os, vtkIndent indent);
39 
41 
42  virtual void SetController(vtkMultiProcessController*);
43  vtkGetObjectMacro(Controller, vtkMultiProcessController);
45 
46 protected:
49 
55 
56 private:
57  vtkPOutlineFilter(const vtkPOutlineFilter&); // Not implemented.
58  void operator=(const vtkPOutlineFilter&); // Not implemented.
59 };
60 
61 #endif
create wireframe outline for arbitrary data set
virtual int FillInputPortInformation(int port, vtkInformation *info)
Store vtkAlgorithm input/output information.
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.
a simple class to control print indentation
Definition: vtkIndent.h:37
virtual int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
create wireframe outline around bounding box
vtkMultiProcessController * Controller
vtkOutlineSource * OutlineSource
#define VTK_PARALLEL_EXPORT
Store zero or more vtkInformation instances.
Multiprocessing communication superclass.