VTK
vtkStreamLine.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkStreamLine.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
52 #ifndef __vtkStreamLine_h
53 #define __vtkStreamLine_h
54 
55 #include "vtkFiltersTracersModule.h" // For export macro
56 #include "vtkStreamer.h"
57 
58 class VTKFILTERSTRACERS_EXPORT vtkStreamLine : public vtkStreamer
59 {
60 public:
61  vtkTypeMacro(vtkStreamLine,vtkStreamer);
62  void PrintSelf(ostream& os, vtkIndent indent);
63 
65  static vtkStreamLine *New();
66 
68 
71  vtkSetClampMacro(StepLength,double,0.000001,VTK_DOUBLE_MAX);
72  vtkGetMacro(StepLength,double);
74 
75 protected:
76  vtkStreamLine();
78 
79  // Convert streamer array into vtkPolyData
81 
82  // the length of line primitives
83  double StepLength;
84 
85 private:
86  vtkStreamLine(const vtkStreamLine&); // Not implemented.
87  void operator=(const vtkStreamLine&); // Not implemented.
88 };
89 
90 #endif