VTK
vtkBrownianPoints.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkBrownianPoints.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 =========================================================================*/
26 #ifndef __vtkBrownianPoints_h
27 #define __vtkBrownianPoints_h
28 
29 #include "vtkDataSetAlgorithm.h"
30 
32 {
33 public:
35  static vtkBrownianPoints *New();
36 
38  void PrintSelf(ostream& os, vtkIndent indent);
39 
41 
42  vtkSetClampMacro(MinimumSpeed,double,0.0,VTK_DOUBLE_MAX);
43  vtkGetMacro(MinimumSpeed,double);
45 
47 
48  vtkSetClampMacro(MaximumSpeed,double,0.0,VTK_DOUBLE_MAX);
49  vtkGetMacro(MaximumSpeed,double);
51 
52 protected:
55 
57  double MinimumSpeed;
58  double MaximumSpeed;
59 private:
60  vtkBrownianPoints(const vtkBrownianPoints&); // Not implemented.
61  void operator=(const vtkBrownianPoints&); // Not implemented.
62 };
63 
64 #endif