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