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 "vtkStreamer.h"
34 
36 {
37 public:
39  void PrintSelf(ostream& os, vtkIndent indent);
40 
42  static vtkStreamPoints *New();
43 
45 
46  vtkSetClampMacro(TimeIncrement,double,0.000001,VTK_DOUBLE_MAX);
47  vtkGetMacro(TimeIncrement,double);
49 
50 protected:
53 
54  // Convert streamer array into vtkPolyData
56 
57  // the separation of points
58  double TimeIncrement;
59 
60 private:
61  vtkStreamPoints(const vtkStreamPoints&); // Not implemented.
62  void operator=(const vtkStreamPoints&); // Not implemented.
63 };
64 
65 #endif