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

vtkStreamPoints.h

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