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
31class vtkBoundingBox;
32class vtkDataObject;
34class vtkDataSet;
35class vtkGraph;
36class vtkInformation;
40class vtkPolyData;
42
43class VTKFILTERSPARALLEL_EXPORT vtkPOutlineFilterInternals
44{
45public:
46
53 void SetCornerFactor(double cornerFactor);
55
56private:
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
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:65
abstract class to specify dataset behavior
Definition: vtkDataSet.h:63
Base class for graph data types.
Definition: vtkGraph.h:288
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:86
@ value
Definition: vtkX3D.h:220