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 =========================================================================*/
24 #ifndef vtkPOutlineFilter_h
25 #define vtkPOutlineFilter_h
26 
27 #include "vtkFiltersParallelModule.h" // For export macro
28 #include "vtkPolyDataAlgorithm.h"
29 class vtkOutlineSource;
31 
32 class VTKFILTERSPARALLEL_EXPORT vtkPOutlineFilter : public vtkPolyDataAlgorithm
33 {
34 public:
35  static vtkPOutlineFilter *New();
37  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
38 
40 
43  virtual void SetController(vtkMultiProcessController*);
44  vtkGetObjectMacro(Controller, vtkMultiProcessController);
46 
47 protected:
49  ~vtkPOutlineFilter() VTK_OVERRIDE;
50 
52  vtkOutlineSource *OutlineSource;
53  int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) VTK_OVERRIDE;
54  int FillInputPortInformation(int port, vtkInformation *info) VTK_OVERRIDE;
55 
56 private:
57  vtkPOutlineFilter(const vtkPOutlineFilter&) VTK_DELETE_FUNCTION;
58  void operator=(const vtkPOutlineFilter&) VTK_DELETE_FUNCTION;
59 };
60 #endif
create wireframe outline for arbitrary data set
Store vtkAlgorithm input/output information.
static vtkPolyDataAlgorithm * New()
Superclass for algorithms that produce only polydata as output.
a simple class to control print indentation
Definition: vtkIndent.h:33
create wireframe outline around bounding box
Store zero or more vtkInformation instances.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Multiprocessing communication superclass.