Main Page Class Hierarchy Alphabetical List Compound List File List Compound Members File Members Related Pages
vtkTubeFilter Class Reference
filter that generates tubes around lines.
More...
#include <vtkTubeFilter.h>
Inheritance diagram for vtkTubeFilter:
[legend]Collaboration diagram for vtkTubeFilter:
[legend]List of all members.
Detailed Description
filter that generates tubes around lines.
-
Date:
-
2000/12/10 20:08:56
-
Revision:
-
1.39
vtkTubeFilter is a filter that generates a tube around each input line. The tubes are made up of triangle strips and rotate around the tube with the rotation of the line normals. (If no normals are present, they are computed automatically.) The radius of the tube can be set to vary with scalar or vector value. If the radius varies with scalar value the radius is linearly adjusted. If the radius varies with vector value, a mass flux preserving variation is used. The number of sides for the tube also can be specified. You can also specify which of the sides are visible. This is useful for generating interesting striping effects.
This filter is typically used to create thick or dramatic lines. Another common use is to combine this filter with vtkStreamLine to generate streamtubes.
-
Warning:
-
The number of tube sides must be greater than 3. If you wish to use fewer sides (i.e., a ribbon), use vtkRibbonFilter.
-
Warning:
-
The input line must not have duplicate points, or normals at points that are parallel to the incoming/outgoing line segments. (Duplicate points can be removed with vtkCleanPolyData.)
-
See also:
-
vtkRibbonFilter vtkStreamLine
-
Examples:
-
vtkTubeFilter (examples)
Definition at line 84 of file vtkTubeFilter.h.
Constructor & Destructor Documentation
vtkTubeFilter::vtkTubeFilter |
( |
|
) |
[protected] |
|
vtkTubeFilter::~vtkTubeFilter |
( |
|
) |
[inline, protected] |
|
vtkTubeFilter::vtkTubeFilter |
( |
const vtkTubeFilter & |
|
) |
[inline, protected] |
|
Member Function Documentation
virtual const char* vtkTubeFilter::GetClassName |
( |
|
) |
[virtual] |
|
int vtkTubeFilter::IsTypeOf |
( |
const char * |
type |
) |
[static] |
|
|
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkPolyDataToPolyDataFilter. |
virtual int vtkTubeFilter::IsA |
( |
const char * |
type |
) |
[virtual] |
|
|
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkPolyDataToPolyDataFilter. |
vtkTubeFilter* vtkTubeFilter::SafeDownCast |
( |
vtkObject * |
o |
) |
[static] |
|
void vtkTubeFilter::PrintSelf |
( |
ostream & |
os, |
|
|
vtkIndent |
indent |
|
) |
[virtual] |
|
|
Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.
Reimplemented from vtkSource. |
vtkTubeFilter* vtkTubeFilter::New |
( |
|
) |
[static] |
|
|
Construct object with radius 0.5, radius variation turned off, the number of sides set to 3, and radius factor of 10.
Reimplemented from vtkPolyDataSource. |
virtual void vtkTubeFilter::SetRadius |
( |
float |
|
) |
[virtual] |
|
|
Set the minimum tube radius (minimum because the tube radius may vary). |
virtual float vtkTubeFilter::GetRadius |
( |
|
) |
[virtual] |
|
virtual void vtkTubeFilter::SetVaryRadius |
( |
int |
|
) |
[virtual] |
|
|
Turn on/off the variation of tube radius with scalar value. |
virtual int vtkTubeFilter::GetVaryRadius |
( |
|
) |
[virtual] |
|
void vtkTubeFilter::SetVaryRadiusToVaryRadiusOff |
( |
|
) |
[inline] |
|
void vtkTubeFilter::SetVaryRadiusToVaryRadiusByScalar |
( |
|
) |
[inline] |
|
void vtkTubeFilter::SetVaryRadiusToVaryRadiusByVector |
( |
|
) |
[inline] |
|
const char * vtkTubeFilter::GetVaryRadiusAsString |
( |
void |
|
) |
[inline] |
|
|
Return the method of varying tube radius descriptive character string.
Definition at line 170 of file vtkTubeFilter.h. |
virtual void vtkTubeFilter::SetNumberOfSides |
( |
int |
|
) |
[virtual] |
|
|
Set the number of sides for the tube. At a minimum, number of sides is 3. |
virtual int vtkTubeFilter::GetNumberOfSides |
( |
|
) |
[virtual] |
|
virtual void vtkTubeFilter::SetRadiusFactor |
( |
float |
|
) |
[virtual] |
|
|
Set the maximum tube radius in terms of a multiple of the minimum radius. |
virtual float vtkTubeFilter::GetRadiusFactor |
( |
|
) |
[virtual] |
|
virtual void vtkTubeFilter::SetDefaultNormal |
( |
float |
, |
|
|
float |
, |
|
|
float |
|
|
) |
[virtual] |
|
|
Set the default normal to use if no normals are supplied, and the DefaultNormalOn is set. |
virtual void vtkTubeFilter::SetDefaultNormal |
( |
float |
[3] |
) |
[virtual] |
|
virtual float* vtkTubeFilter::GetDefaultNormal |
( |
|
) |
[virtual] |
|
virtual void vtkTubeFilter::GetDefaultNormal |
( |
float |
data[3] |
) |
[virtual] |
|
virtual void vtkTubeFilter::SetUseDefaultNormal |
( |
int |
|
) |
[virtual] |
|
|
Set a boolean to control whether to use default normals. DefaultNormalOn is set. |
virtual int vtkTubeFilter::GetUseDefaultNormal |
( |
|
) |
[virtual] |
|
virtual void vtkTubeFilter::UseDefaultNormalOn |
( |
|
) |
[virtual] |
|
virtual void vtkTubeFilter::UseDefaultNormalOff |
( |
|
) |
[virtual] |
|
virtual void vtkTubeFilter::SetCapping |
( |
int |
|
) |
[virtual] |
|
|
Turn on/off whether to cap the ends with polygons. |
virtual int vtkTubeFilter::GetCapping |
( |
|
) |
[virtual] |
|
virtual void vtkTubeFilter::CappingOn |
( |
|
) |
[virtual] |
|
virtual void vtkTubeFilter::CappingOff |
( |
|
) |
[virtual] |
|
virtual void vtkTubeFilter::SetOnRatio |
( |
int |
|
) |
[virtual] |
|
|
Control the striping of the tubes. If OnRatio is greater than 1, then every nth tube side is turned on, beginning with the Offset side. |
virtual int vtkTubeFilter::GetOnRatio |
( |
|
) |
[virtual] |
|
virtual void vtkTubeFilter::SetOffset |
( |
int |
|
) |
[virtual] |
|
|
Control the striping of the tubes. The offset sets the first tube side that is visible. Offset is generally used with OnRatio to create nifty striping effects. |
virtual int vtkTubeFilter::GetOffset |
( |
|
) |
[virtual] |
|
void vtkTubeFilter::operator= |
( |
const vtkTubeFilter & |
|
) |
[inline, protected] |
|
void vtkTubeFilter::Execute |
( |
|
) |
[protected, virtual] |
|
Member Data Documentation
float vtkTubeFilter::Radius [protected]
|
|
int vtkTubeFilter::VaryRadius [protected]
|
|
int vtkTubeFilter::NumberOfSides [protected]
|
|
float vtkTubeFilter::RadiusFactor [protected]
|
|
float vtkTubeFilter::DefaultNormal[3] [protected]
|
|
int vtkTubeFilter::UseDefaultNormal [protected]
|
|
int vtkTubeFilter::Capping [protected]
|
|
int vtkTubeFilter::OnRatio [protected]
|
|
int vtkTubeFilter::Offset [protected]
|
|
The documentation for this class was generated from the following file:
Generated on Wed Nov 21 13:01:22 2001 for VTK by
1.2.11.1 written by Dimitri van Heesch,
© 1997-2001