VTK  9.0.3
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 "vtkBoundingBox.h" // needed for vtkBoundingBox.
28 #include "vtkFiltersParallelModule.h" // For export macro
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:
50  void SetCornerFactor(double cornerFactor);
52 
53 private:
55  vtkPOutlineFilterInternals& operator=(const vtkPOutlineFilterInternals&) = delete;
56 
57  int RequestData(vtkOverlappingAMR* amr, vtkPolyData* output);
58  int RequestData(vtkUniformGridAMR* amr, vtkPolyData* output);
59  int RequestData(vtkDataObjectTree* cd, vtkPolyData* output);
60  int RequestData(vtkDataSet* ds, vtkPolyData* output);
61  int RequestData(vtkGraph* graph, vtkPolyData* output);
62 
63  void CollectCompositeBounds(vtkDataObject* input);
64 
65  std::vector<vtkBoundingBox> BoundsList;
66  vtkMultiProcessController* Controller;
67 
68  bool IsCornerSource;
69  double CornerFactor;
70 };
71 
72 #endif
73 // VTK-HeaderTest-Exclude: vtkPOutlineFilterInternals.h
Fast, simple class for dealing with 3D bounds.
provides implementation for most abstract methods in the superclass vtkCompositeDataSet
general representation of visualization data
Definition: vtkDataObject.h:60
abstract class to specify dataset behavior
Definition: vtkDataSet.h:57
Base class for graph data types.
Definition: vtkGraph.h:290
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Multiprocessing communication superclass.
hierarchical dataset of vtkUniformGrids
create wireframe outline (or corners) for arbitrary data set
void SetCornerFactor(double cornerFactor)
virtual ~vtkPOutlineFilterInternals()
void SetIsCornerSource(bool value)
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
void SetController(vtkMultiProcessController *)
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:85
@ value
Definition: vtkX3D.h:226