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 =========================================================================*/
29 #ifndef vtkBrownianPoints_h
30 #define vtkBrownianPoints_h
31 
32 #include "vtkFiltersGeneralModule.h" // For export macro
33 #include "vtkDataSetAlgorithm.h"
34 
36 {
37 public:
39  static vtkBrownianPoints *New();
40 
42  void PrintSelf(ostream& os, vtkIndent indent);
43 
45 
46  vtkSetClampMacro(MinimumSpeed,double,0.0,VTK_DOUBLE_MAX);
47  vtkGetMacro(MinimumSpeed,double);
49 
51 
52  vtkSetClampMacro(MaximumSpeed,double,0.0,VTK_DOUBLE_MAX);
53  vtkGetMacro(MaximumSpeed,double);
55 
56 protected:
59 
61  double MinimumSpeed;
62  double MaximumSpeed;
63 private:
64  vtkBrownianPoints(const vtkBrownianPoints&); // Not implemented.
65  void operator=(const vtkBrownianPoints&); // Not implemented.
66 };
67 
68 #endif
#define VTK_DOUBLE_MAX
Definition: vtkType.h:142
Store vtkAlgorithm input/output information.
a simple class to control print indentation
Definition: vtkIndent.h:38
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
#define VTKFILTERSGENERAL_EXPORT
Store zero or more vtkInformation instances.
assign random vector to points
void PrintSelf(ostream &os, vtkIndent indent)
Superclass for algorithms that produce output of the same type as input.
static vtkDataSetAlgorithm * New()