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
00056 #ifndef __vtkStreamLine_h
00057 #define __vtkStreamLine_h
00058
00059 #include "vtkStreamer.h"
00060
00061 class VTK_GRAPHICS_EXPORT vtkStreamLine : public vtkStreamer
00062 {
00063 public:
00064 vtkTypeRevisionMacro(vtkStreamLine,vtkStreamer);
00065 void PrintSelf(ostream& os, vtkIndent indent);
00066
00068 static vtkStreamLine *New();
00069
00071
00074 vtkSetClampMacro(StepLength,float,0.000001,VTK_LARGE_FLOAT);
00075 vtkGetMacro(StepLength,float);
00077
00078 protected:
00079 vtkStreamLine();
00080 ~vtkStreamLine() {};
00081
00082
00083 void Execute();
00084
00085
00086 float StepLength;
00087
00088 private:
00089 vtkStreamLine(const vtkStreamLine&);
00090 void operator=(const vtkStreamLine&);
00091 };
00092
00093 #endif
00094
00095