VTK
vtkStreamPoints.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkStreamPoints.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 =========================================================================*/
30 #ifndef vtkStreamPoints_h
31 #define vtkStreamPoints_h
32 
33 #include "vtkFiltersFlowPathsModule.h" // For export macro
34 #include "vtkStreamer.h"
35 
37 {
38 public:
40  void PrintSelf(ostream& os, vtkIndent indent);
41 
43  static vtkStreamPoints *New();
44 
46 
47  vtkSetClampMacro(TimeIncrement,double,0.000001,VTK_DOUBLE_MAX);
48  vtkGetMacro(TimeIncrement,double);
50 
51 protected:
54 
55  // Convert streamer array into vtkPolyData
57 
58  // the separation of points
59  double TimeIncrement;
60 
61 private:
62  vtkStreamPoints(const vtkStreamPoints&); // Not implemented.
63  void operator=(const vtkStreamPoints&); // Not implemented.
64 };
65 
66 #endif
vtkStreamPoints::vtkStreamPoints
vtkStreamPoints()
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:41
vtkStreamer.h
vtkTypeMacro
#define vtkTypeMacro(thisClass, superclass)
Definition: vtkSetGet.h:642
VTKFILTERSFLOWPATHS_EXPORT
#define VTKFILTERSFLOWPATHS_EXPORT
Definition: vtkFiltersFlowPathsModule.h:15
vtkFiltersFlowPathsModule.h
vtkStreamPoints
generate points along streamer separated by constant time increment
Definition: vtkStreamPoints.h:37
vtkSetClampMacro
#define vtkSetClampMacro(name, type, min, max)
Definition: vtkSetGet.h:143
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkGetMacro
#define vtkGetMacro(name, type)
Definition: vtkSetGet.h:93
vtkStreamPoints::New
static vtkStreamPoints * New()
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:86
vtkStreamer
abstract object implements integration of massless particle through vector field
Definition: vtkStreamer.h:66
vtkStreamPoints::TimeIncrement
double TimeIncrement
Definition: vtkStreamPoints.h:59
vtkStreamPoints::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent)
vtkStreamPoints::~vtkStreamPoints
~vtkStreamPoints()
Definition: vtkStreamPoints.h:53
VTK_DOUBLE_MAX
#define VTK_DOUBLE_MAX
Definition: vtkType.h:142
vtkStreamPoints::RequestData
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)