Graphics/vtkStreamPoints.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00047 #ifndef __vtkStreamPoints_h
00048 #define __vtkStreamPoints_h
00049
00050 #include "vtkStreamer.h"
00051
00052 class VTK_GRAPHICS_EXPORT vtkStreamPoints : public vtkStreamer
00053 {
00054 public:
00055 vtkTypeRevisionMacro(vtkStreamPoints,vtkStreamer);
00056 void PrintSelf(ostream& os, vtkIndent indent);
00057
00059 static vtkStreamPoints *New();
00060
00062
00063 vtkSetClampMacro(TimeIncrement,float,0.000001,VTK_LARGE_FLOAT);
00064 vtkGetMacro(TimeIncrement,float);
00066
00067 protected:
00068 vtkStreamPoints();
00069 ~vtkStreamPoints() {};
00070
00071
00072 void Execute();
00073
00074
00075 float TimeIncrement;
00076
00077 private:
00078 vtkStreamPoints(const vtkStreamPoints&);
00079 void operator=(const vtkStreamPoints&);
00080 };
00081
00082 #endif
00083
00084