vtkDashedStreamLine.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00049 #ifndef __vtkDashedStreamLine_h
00050 #define __vtkDashedStreamLine_h
00051
00052 #include "vtkStreamLine.h"
00053
00054 class VTK_GRAPHICS_EXPORT vtkDashedStreamLine : public vtkStreamLine
00055 {
00056 public:
00057 static vtkDashedStreamLine *New();
00058 vtkTypeRevisionMacro(vtkDashedStreamLine,vtkStreamLine);
00059 void PrintSelf(ostream& os, vtkIndent indent);
00060
00062
00065 vtkSetClampMacro(DashFactor,double,0.01,1.0);
00066 vtkGetMacro(DashFactor,double);
00068
00069 protected:
00070 vtkDashedStreamLine();
00071 ~vtkDashedStreamLine() {};
00072
00073
00074 void Execute();
00075
00076
00077 double DashFactor;
00078
00079 private:
00080 vtkDashedStreamLine(const vtkDashedStreamLine&);
00081 void operator=(const vtkDashedStreamLine&);
00082 };
00083
00084 #endif
00085
00086