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

vtkStreamLine.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkStreamLine.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 =========================================================================*/
00064 #ifndef __vtkStreamLine_h
00065 #define __vtkStreamLine_h
00066 
00067 #include "vtkStreamer.h"
00068 
00069 class VTK_GRAPHICS_EXPORT vtkStreamLine : public vtkStreamer
00070 {
00071 public:
00072   vtkTypeRevisionMacro(vtkStreamLine,vtkStreamer);
00073   void PrintSelf(ostream& os, vtkIndent indent);
00074 
00076   static vtkStreamLine *New();
00077 
00079 
00082   vtkSetClampMacro(StepLength,double,0.000001,VTK_DOUBLE_MAX);
00083   vtkGetMacro(StepLength,double);
00085 
00086 protected:
00087   vtkStreamLine();
00088   ~vtkStreamLine() {};
00089 
00090   // Convert streamer array into vtkPolyData
00091   void Execute();
00092 
00093   // the length of line primitives
00094   double StepLength;
00095 
00096 private:
00097   vtkStreamLine(const vtkStreamLine&);  // Not implemented.
00098   void operator=(const vtkStreamLine&);  // Not implemented.
00099 };
00100 
00101 #endif
00102 
00103