VTK  9.3.20240425
vtkUncertaintyTubeFilter.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
26#ifndef vtkUncertaintyTubeFilter_h
27#define vtkUncertaintyTubeFilter_h
28
29#include "vtkFiltersGeneralModule.h" // For export macro
31
32VTK_ABI_NAMESPACE_BEGIN
33class vtkTubeArray;
34
35class VTKFILTERSGENERAL_EXPORT vtkUncertaintyTubeFilter : public vtkPolyDataAlgorithm
36{
37public:
39
43 void PrintSelf(ostream& os, vtkIndent indent) override;
45
50
52
56 vtkSetClampMacro(NumberOfSides, int, 3, VTK_INT_MAX);
57 vtkGetMacro(NumberOfSides, int);
59
60protected:
63
64 // Integrate data
67 vtkPolyData* output);
68
69 // array of uncertainty tubes
70 vtkTubeArray* Tubes;
72
73 // number of sides of tube
75
76private:
78 void operator=(const vtkUncertaintyTubeFilter&) = delete;
79};
80
81VTK_ABI_NAMESPACE_END
82#endif
represent and manipulate cell attribute data
a simple class to control print indentation
Definition vtkIndent.h:108
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
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:144