vtkStreamLine.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00064 #ifndef __vtkStreamLine_h
00065 #define __vtkStreamLine_h
00066
00067 #include "vtkStreamer.h"
00068
00069 class VTK_GRAPHICS_EXPORT vtkStreamLine : public vtkStreamer
00070 {
00071 public:
00072 vtkTypeRevisionMacro(vtkStreamLine,vtkStreamer);
00073 void PrintSelf(ostream& os, vtkIndent indent);
00074
00076 static vtkStreamLine *New();
00077
00079
00082 vtkSetClampMacro(StepLength,double,0.000001,VTK_DOUBLE_MAX);
00083 vtkGetMacro(StepLength,double);
00085
00086 protected:
00087 vtkStreamLine();
00088 ~vtkStreamLine() {};
00089
00090
00091 void Execute();
00092
00093
00094 double StepLength;
00095
00096 private:
00097 vtkStreamLine(const vtkStreamLine&);
00098 void operator=(const vtkStreamLine&);
00099 };
00100
00101 #endif
00102
00103