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
|
/*=========================================================================
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.
=========================================================================*/
// .NAME vtkUncertaintyTubeFilter - generate uncertainty tubes along a polyline
// .SECTION Description
// 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.
//
// .SECTION Caveats
// 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).
// .SECTION See Also
// vtkTensorGlyph vtkStreamer
#ifndef __vtkUncertaintyTubeFilter_h
#define __vtkUncertaintyTubeFilter_h
#include "vtkPolyDataAlgorithm.h"
class vtkTubeArray;
class VTK_GRAPHICS_EXPORT vtkUncertaintyTubeFilter : public vtkPolyDataAlgorithm
{
public:
// Description:
// Standard methods for printing and obtaining type information for instances of this class.
vtkTypeMacro(vtkUncertaintyTubeFilter,vtkPolyDataAlgorithm);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Object factory method to instantiate this class.
static vtkUncertaintyTubeFilter *New();
// Description:
// Set / get the number of sides for the tube. At a minimum,
// the number of sides is 3.
vtkSetClampMacro(NumberOfSides,int,3,VTK_LARGE_INTEGER);
vtkGetMacro(NumberOfSides,int);
protected:
vtkUncertaintyTubeFilter();
~vtkUncertaintyTubeFilter();
// Integrate data
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
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&); // Not implemented.
void operator=(const vtkUncertaintyTubeFilter&); // Not implemented.
};
#endif
|