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 =========================================================================*/
23 #ifndef vtkPOutlineFilterInternals_h
24 #define vtkPOutlineFilterInternals_h
25 
26 #include "vtkFiltersParallelModule.h" // For export macro
27 #include "vtkBoundingBox.h" // needed for vtkBoundingBox.
28 #include <vector> // needed for std::vector
29 
30 class vtkBoundingBox;
31 class vtkDataObject;
32 class vtkDataObjectTree;
33 class vtkDataSet;
34 class vtkInformation;
37 class vtkOverlappingAMR;
38 class vtkPolyData;
39 class vtkUniformGridAMR;
40 
42 {
43 public:
44 
46  virtual ~vtkPOutlineFilterInternals();
47  void SetController(vtkMultiProcessController*);
48  int RequestData(vtkInformation *,
51  void SetCornerFactor(double cornerFactor);
52  void SetIsCornerSource(bool value);
53 
54 private:
55 
56  int RequestData(vtkOverlappingAMR* amr, vtkPolyData* output);
57  int RequestData(vtkUniformGridAMR* amr, vtkPolyData* output);
58  int RequestData(vtkDataObjectTree* cd, vtkPolyData* output);
59  int RequestData(vtkDataSet* ds, vtkPolyData* output);
60 
61 
62  void CollectCompositeBounds(vtkDataObject* input);
63 
64  std::vector<vtkBoundingBox> BoundsList;
65  vtkMultiProcessController* Controller;
66 
67  bool IsCornerSource;
68  double CornerFactor;
69 };
70 
71 #endif
72 // 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:61
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:83
#define VTKFILTERSPARALLEL_EXPORT
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.