Graphics/vtkStreamLine.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00068 #ifndef __vtkStreamLine_h
00069 #define __vtkStreamLine_h
00070
00071 #include "vtkStreamer.h"
00072
00073 class VTK_GRAPHICS_EXPORT vtkStreamLine : public vtkStreamer
00074 {
00075 public:
00076 vtkTypeRevisionMacro(vtkStreamLine,vtkStreamer);
00077 void PrintSelf(ostream& os, vtkIndent indent);
00078
00080 static vtkStreamLine *New();
00081
00083
00086 vtkSetClampMacro(StepLength,float,0.000001,VTK_LARGE_FLOAT);
00087 vtkGetMacro(StepLength,float);
00089
00090 protected:
00091 vtkStreamLine();
00092 ~vtkStreamLine() {};
00093
00094
00095 void Execute();
00096
00097
00098 float StepLength;
00099
00100 private:
00101 vtkStreamLine(const vtkStreamLine&);
00102 void operator=(const vtkStreamLine&);
00103 };
00104
00105 #endif
00106
00107