VTK  9.3.20240418
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
30 #include "vtkPolyDataAlgorithm.h"
31 
32 VTK_ABI_NAMESPACE_BEGIN
33 class vtkTubeArray;
34 
35 class VTKFILTERSGENERAL_EXPORT vtkUncertaintyTubeFilter : public vtkPolyDataAlgorithm
36 {
37 public:
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 
60 protected:
63 
64  // Integrate data
67  vtkPolyData* output);
68 
69  // array of uncertainty tubes
70  vtkTubeArray* Tubes;
72 
73  // number of sides of tube
75 
76 private:
78  void operator=(const vtkUncertaintyTubeFilter&) = delete;
79 };
80 
81 VTK_ABI_NAMESPACE_END
82 #endif
represent and manipulate cell attribute data
Definition: vtkCellData.h:141
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
Definition: vtkPointData.h:140
Superclass for algorithms that produce only polydata as output.
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:181
generate uncertainty tubes along a polyline
static vtkUncertaintyTubeFilter * New()
Object factory method to instantiate this class.
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.
int BuildTubes(vtkPointData *pd, vtkPointData *outPD, vtkCellData *cd, vtkCellData *outCD, vtkPolyData *output)
~vtkUncertaintyTubeFilter() override
#define VTK_INT_MAX
Definition: vtkType.h:144