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

dox/Graphics/vtkStreamLine.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkStreamLine.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 =========================================================================*/
00056 #ifndef __vtkStreamLine_h
00057 #define __vtkStreamLine_h
00058 
00059 #include "vtkStreamer.h"
00060 
00061 class VTK_GRAPHICS_EXPORT vtkStreamLine : public vtkStreamer
00062 {
00063 public:
00064   vtkTypeRevisionMacro(vtkStreamLine,vtkStreamer);
00065   void PrintSelf(ostream& os, vtkIndent indent);
00066 
00068   static vtkStreamLine *New();
00069 
00071 
00074   vtkSetClampMacro(StepLength,float,0.000001,VTK_LARGE_FLOAT);
00075   vtkGetMacro(StepLength,float);
00077 
00078 protected:
00079   vtkStreamLine();
00080   ~vtkStreamLine() {};
00081 
00082   // Convert streamer array into vtkPolyData
00083   void Execute();
00084 
00085   // the length of line primitives
00086   float StepLength;
00087 
00088 private:
00089   vtkStreamLine(const vtkStreamLine&);  // Not implemented.
00090   void operator=(const vtkStreamLine&);  // Not implemented.
00091 };
00092 
00093 #endif
00094 
00095