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 =========================================================================*/
46 #ifndef vtkStreamLine_h
47 #define vtkStreamLine_h
48 
49 #include "vtkFiltersFlowPathsModule.h" // For export macro
50 #include "vtkStreamer.h"
51 
52 #ifndef VTK_LEGACY_REMOVE
53 
55 {
56 public:
57  vtkTypeMacro(vtkStreamLine,vtkStreamer);
58  void PrintSelf(ostream& os, vtkIndent indent);
59 
61  static vtkStreamLine *New();
62 
64 
67  vtkSetClampMacro(StepLength,double,0.000001,VTK_DOUBLE_MAX);
68  vtkGetMacro(StepLength,double);
70 
71 protected:
72  vtkStreamLine();
74 
75  // Convert streamer array into vtkPolyData
77 
78  // the length of line primitives
79  double StepLength;
80 
81 private:
82  vtkStreamLine(const vtkStreamLine&); // Not implemented.
83  void operator=(const vtkStreamLine&); // Not implemented.
84 };
85 
86 #endif // VTK_LEGACY_REMOVE
87 #endif
#define VTKFILTERSFLOWPATHS_EXPORT
#define VTK_DOUBLE_MAX
Definition: vtkType.h:140
Store vtkAlgorithm input/output information.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
static vtkPolyDataAlgorithm * New()
double StepLength
Definition: vtkStreamLine.h:79
a simple class to control print indentation
Definition: vtkIndent.h:38
abstract object implements integration of massless particle through vector field
Definition: vtkStreamer.h:67
generate streamline in arbitrary dataset
Definition: vtkStreamLine.h:54
Store zero or more vtkInformation instances.
void PrintSelf(ostream &os, vtkIndent indent)