1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkUncertaintyTubeFilter.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/**
* @class vtkUncertaintyTubeFilter
* @brief generate uncertainty tubes along a polyline
*
* vtkUncertaintyTubeFilter is a filter that generates ellipsoidal (in cross
* section) tubes that follows a polyline. The input is a vtkPolyData with
* polylines that have associated vector point data. The vector data represents
* the uncertainty of the polyline in the x-y-z directions.
*
* @warning
* The vector uncertainty values define an axis-aligned ellipsoid at each
* polyline point. The uncertainty tubes can be envisioned as the
* interpolation of these ellipsoids between the points defining the
* polyline (or rather, the interpolation of the cross section of the
* ellipsoids alog the polyline).
*
* @sa
* vtkTensorGlyph vtkStreamTracer
*/
#ifndef vtkUncertaintyTubeFilter_h
#define vtkUncertaintyTubeFilter_h
#include "vtkFiltersGeneralModule.h" // For export macro
#include "vtkPolyDataAlgorithm.h"
class vtkTubeArray;
class VTKFILTERSGENERAL_EXPORT vtkUncertaintyTubeFilter : public vtkPolyDataAlgorithm
{
public:
//@{
/**
* Standard methods for printing and obtaining type information for instances of this class.
*/
vtkTypeMacro(vtkUncertaintyTubeFilter,vtkPolyDataAlgorithm);
void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
//@}
/**
* Object factory method to instantiate this class.
*/
static vtkUncertaintyTubeFilter *New();
//@{
/**
* Set / get the number of sides for the tube. At a minimum,
* the number of sides is 3.
*/
vtkSetClampMacro(NumberOfSides,int,3,VTK_INT_MAX);
vtkGetMacro(NumberOfSides,int);
//@}
protected:
vtkUncertaintyTubeFilter();
~vtkUncertaintyTubeFilter() VTK_OVERRIDE;
// Integrate data
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) VTK_OVERRIDE;
int BuildTubes(vtkPointData *pd, vtkPointData *outPD,
vtkCellData *cd, vtkCellData *outCD, vtkPolyData *output);
//array of uncertainty tubes
vtkTubeArray *Tubes;
int NumberOfTubes;
// number of sides of tube
int NumberOfSides;
private:
vtkUncertaintyTubeFilter(const vtkUncertaintyTubeFilter&) VTK_DELETE_FUNCTION;
void operator=(const vtkUncertaintyTubeFilter&) VTK_DELETE_FUNCTION;
};
#endif
|