VTK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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 "vtkFiltersGeneralModule.h" // For export macro
30 #include "vtkDataSetAlgorithm.h"
31 
32 class VTKFILTERSGENERAL_EXPORT vtkBrownianPoints : public vtkDataSetAlgorithm
33 {
34 public:
36  static vtkBrownianPoints *New();
37 
39  void PrintSelf(ostream& os, vtkIndent indent);
40 
42 
43  vtkSetClampMacro(MinimumSpeed,double,0.0,VTK_DOUBLE_MAX);
44  vtkGetMacro(MinimumSpeed,double);
46 
48 
49  vtkSetClampMacro(MaximumSpeed,double,0.0,VTK_DOUBLE_MAX);
50  vtkGetMacro(MaximumSpeed,double);
52 
53 protected:
56 
57  virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
58  double MinimumSpeed;
59  double MaximumSpeed;
60 private:
61  vtkBrownianPoints(const vtkBrownianPoints&); // Not implemented.
62  void operator=(const vtkBrownianPoints&); // Not implemented.
63 };
64 
65 #endif
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
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()