VTK  9.1.0
vtkUncertaintyTubeFilter.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkUncertaintyTubeFilter.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=========================================================================*/
35#ifndef vtkUncertaintyTubeFilter_h
36#define vtkUncertaintyTubeFilter_h
37
38#include "vtkFiltersGeneralModule.h" // For export macro
40
41class vtkTubeArray;
42
43class VTKFILTERSGENERAL_EXPORT vtkUncertaintyTubeFilter : public vtkPolyDataAlgorithm
44{
45public:
47
51 void PrintSelf(ostream& os, vtkIndent indent) override;
53
58
60
64 vtkSetClampMacro(NumberOfSides, int, 3, VTK_INT_MAX);
65 vtkGetMacro(NumberOfSides, int);
67
68protected:
71
72 // Integrate data
75 vtkPolyData* output);
76
77 // array of uncertainty tubes
78 vtkTubeArray* Tubes;
80
81 // number of sides of tube
83
84private:
86 void operator=(const vtkUncertaintyTubeFilter&) = delete;
87};
88
89#endif
represent and manipulate cell attribute data
Definition: vtkCellData.h:142
a simple class to control print indentation
Definition: vtkIndent.h:113
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
represent and manipulate point attribute data
Definition: vtkPointData.h:142
Superclass for algorithms that produce only polydata as output.
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:195
generate uncertainty tubes along a polyline
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for printing and obtaining type information for instances of this class.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
static vtkUncertaintyTubeFilter * New()
Object factory method to instantiate this class.
int BuildTubes(vtkPointData *pd, vtkPointData *outPD, vtkCellData *cd, vtkCellData *outCD, vtkPolyData *output)
~vtkUncertaintyTubeFilter() override
#define VTK_INT_MAX
Definition: vtkType.h:155