VTK
vtkPOutlineFilterInternals.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPOutlineFilterInternals.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 vtkPOutlineFilterInternals_h
25 #define vtkPOutlineFilterInternals_h
26 
27 #include "vtkFiltersParallelModule.h" // For export macro
28 #include "vtkBoundingBox.h" // needed for vtkBoundingBox.
29 #include <vector> // needed for std::vector
30 
31 class vtkBoundingBox;
32 class vtkDataObject;
33 class vtkDataObjectTree;
34 class vtkDataSet;
35 class vtkGraph;
36 class vtkInformation;
39 class vtkOverlappingAMR;
40 class vtkPolyData;
41 class vtkUniformGridAMR;
42 
43 class VTKFILTERSPARALLEL_EXPORT vtkPOutlineFilterInternals
44 {
45 public:
46 
48  virtual ~vtkPOutlineFilterInternals();
49  void SetController(vtkMultiProcessController*);
50  int RequestData(vtkInformation *,
53  void SetCornerFactor(double cornerFactor);
54  void SetIsCornerSource(bool value);
55 
56 private:
57 
58  int RequestData(vtkOverlappingAMR* amr, vtkPolyData* output);
59  int RequestData(vtkUniformGridAMR* amr, vtkPolyData* output);
60  int RequestData(vtkDataObjectTree* cd, vtkPolyData* output);
61  int RequestData(vtkDataSet* ds, vtkPolyData* output);
62  int RequestData(vtkGraph* graph, vtkPolyData* output);
63 
64 
65  void CollectCompositeBounds(vtkDataObject* input);
66 
67  std::vector<vtkBoundingBox> BoundsList;
68  vtkMultiProcessController* Controller;
69 
70  bool IsCornerSource;
71  double CornerFactor;
72 };
73 
74 #endif
75 // VTK-HeaderTest-Exclude: vtkPOutlineFilterInternals.h
provides implementation for most abstract methods in the superclass vtkCompositeDataSet ...
Store vtkAlgorithm input/output information.
abstract class to specify dataset behavior
Definition: vtkDataSet.h:62
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:85
Base class for graph data types.
Definition: vtkGraph.h:287
create wireframe outline (or corners) for arbitrary data set
hierarchical dataset of vtkUniformGrids
Store zero or more vtkInformation instances.
general representation of visualization data
Definition: vtkDataObject.h:64
Fast Simple Class for dealing with 3D bounds.
Multiprocessing communication superclass.