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 
51  void SetCornerFactor(double cornerFactor);
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
vtkDataObjectTree
provides implementation for most abstract methods in the superclass vtkCompositeDataSet
Definition: vtkDataObjectTree.h:46
VTKFILTERSPARALLEL_EXPORT
#define VTKFILTERSPARALLEL_EXPORT
Definition: vtkFiltersParallelModule.h:15
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:41
vtkPOutlineFilterInternals
create wireframe outline (or corners) for arbitrary data set
Definition: vtkPOutlineFilterInternals.h:42
vtkPOutlineFilterInternals::SetIsCornerSource
void SetIsCornerSource(bool value)
vtkPOutlineFilterInternals::SetCornerFactor
void SetCornerFactor(double cornerFactor)
vtkPOutlineFilterInternals::SetController
void SetController(vtkMultiProcessController *)
vtkgl::input
GLenum GLenum GLenum input
Definition: vtkgl.h:15941
vtkFiltersParallelModule.h
vtkBoundingBox
Fast Simple Class for dealing with 3D bounds.
Definition: vtkBoundingBox.h:35
vtkgl::value
GLsizei const GLfloat * value
Definition: vtkgl.h:12021
vtkMultiProcessController
Multiprocessing communication superclass.
Definition: vtkMultiProcessController.h:85
vtkOverlappingAMR
hierarchical dataset of vtkUniformGrids
Definition: vtkOverlappingAMR.h:46
vtkBoundingBox.h
vtkDataSet
abstract class to specify dataset behavior
Definition: vtkDataSet.h:62
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:86
vtkPolyData
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:84
vtkPOutlineFilterInternals::vtkPOutlineFilterInternals
vtkPOutlineFilterInternals()
vtkUniformGridAMR
Definition: vtkUniformGridAMR.h:34
vtkPOutlineFilterInternals::~vtkPOutlineFilterInternals
virtual ~vtkPOutlineFilterInternals()
vtkDataObject
general representation of visualization data
Definition: vtkDataObject.h:65
vtkPOutlineFilterInternals::RequestData
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)