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

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 =========================================================================*/
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   // Convert streamer array into vtkPolyData
00072   void Execute();
00073 
00074   // the separation of points
00075   float TimeIncrement;
00076   
00077 private:
00078   vtkStreamPoints(const vtkStreamPoints&);  // Not implemented.
00079   void operator=(const vtkStreamPoints&);  // Not implemented.
00080 };
00081 
00082 #endif
00083 
00084