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
00015
00034
#ifndef __vtkStreamPoints_h
00035
#define __vtkStreamPoints_h
00036
00037
#include "vtkStreamer.h"
00038
00039 class VTK_GRAPHICS_EXPORT vtkStreamPoints :
public vtkStreamer
00040 {
00041
public:
00042 vtkTypeRevisionMacro(vtkStreamPoints,
vtkStreamer);
00043
void PrintSelf(ostream& os,
vtkIndent indent);
00044
00046
static vtkStreamPoints *
New();
00047
00049
00050 vtkSetClampMacro(TimeIncrement,
float,0.000001,VTK_LARGE_FLOAT);
00051 vtkGetMacro(TimeIncrement,
float);
00053
00054
protected:
00055 vtkStreamPoints();
00056 ~vtkStreamPoints() {};
00057
00058
00059
void Execute();
00060
00061
00062 float TimeIncrement;
00063
00064
private:
00065 vtkStreamPoints(
const vtkStreamPoints&);
00066
void operator=(
const vtkStreamPoints&);
00067 };
00068
00069
#endif
00070
00071