Main Page | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

dox/Graphics/vtkStreamPoints.h

Go to the documentation of this file.
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkStreamPoints.h,v $ 00005 Language: C++ 00006 00007 Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen 00008 All rights reserved. 00009 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00010 00011 This software is distributed WITHOUT ANY WARRANTY; without even 00012 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00013 PURPOSE. See the above copyright notice for more information. 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 // Convert streamer array into vtkPolyData 00059 void Execute(); 00060 00061 // the separation of points 00062 float TimeIncrement; 00063 00064 private: 00065 vtkStreamPoints(const vtkStreamPoints&); // Not implemented. 00066 void operator=(const vtkStreamPoints&); // Not implemented. 00067 }; 00068 00069 #endif 00070 00071