dox/Graphics/vtkStreamPoints.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00030
#ifndef __vtkStreamPoints_h
00031
#define __vtkStreamPoints_h
00032
00033
#include "vtkStreamer.h"
00034
00035 class VTK_GRAPHICS_EXPORT vtkStreamPoints :
public vtkStreamer
00036 {
00037
public:
00038 vtkTypeRevisionMacro(vtkStreamPoints,
vtkStreamer);
00039
void PrintSelf(ostream& os,
vtkIndent indent);
00040
00042
static vtkStreamPoints *
New();
00043
00045
00046 vtkSetClampMacro(TimeIncrement,
double,0.000001,VTK_DOUBLE_MAX);
00047 vtkGetMacro(TimeIncrement,
double);
00049
00050
protected:
00051 vtkStreamPoints();
00052 ~vtkStreamPoints() {};
00053
00054
00055
void Execute();
00056
00057
00058 double TimeIncrement;
00059
00060
private:
00061 vtkStreamPoints(
const vtkStreamPoints&);
00062
void operator=(
const vtkStreamPoints&);
00063 };
00064
00065
#endif
00066
00067