VTK  9.2.6
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=========================================================================*/
38#ifndef vtkUncertaintyTubeFilter_h
39#define vtkUncertaintyTubeFilter_h
40
41#include "vtkFiltersGeneralModule.h" // For export macro
43
44class vtkTubeArray;
45
46class VTKFILTERSGENERAL_EXPORT vtkUncertaintyTubeFilter : public vtkPolyDataAlgorithm
47{
48public:
50
54 void PrintSelf(ostream& os, vtkIndent indent) override;
56
61
63
67 vtkSetClampMacro(NumberOfSides, int, 3, VTK_INT_MAX);
68 vtkGetMacro(NumberOfSides, int);
70
71protected:
74
75 // Integrate data
78 vtkPolyData* output);
79
80 // array of uncertainty tubes
81 vtkTubeArray* Tubes;
83
84 // number of sides of tube
86
87private:
89 void operator=(const vtkUncertaintyTubeFilter&) = delete;
90};
91
92#endif
represent and manipulate cell attribute data
Definition vtkCellData.h:42
a simple class to control print indentation
Definition vtkIndent.h:40
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
represent and manipulate point attribute data
Superclass for algorithms that produce only polydata as output.
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition vtkPolyData.h:91
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