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:
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
vtkBrownianPoints::MaximumSpeed
double MaximumSpeed
Definition: vtkBrownianPoints.h:62
vtkBrownianPoints
assign random vector to points
Definition: vtkBrownianPoints.h:36
vtkBrownianPoints::MinimumSpeed
double MinimumSpeed
Definition: vtkBrownianPoints.h:61
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:41
vtkBrownianPoints::New
static vtkBrownianPoints * New()
vtkTypeMacro
#define vtkTypeMacro(thisClass, superclass)
Definition: vtkSetGet.h:642
vtkDataSetAlgorithm
Superclass for algorithms that produce output of the same type as input.
Definition: vtkDataSetAlgorithm.h:51
vtkBrownianPoints::~vtkBrownianPoints
~vtkBrownianPoints()
Definition: vtkBrownianPoints.h:58
vtkSetClampMacro
#define vtkSetClampMacro(name, type, min, max)
Definition: vtkSetGet.h:143
vtkBrownianPoints::vtkBrownianPoints
vtkBrownianPoints()
vtkFiltersGeneralModule.h
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
VTKFILTERSGENERAL_EXPORT
#define VTKFILTERSGENERAL_EXPORT
Definition: vtkFiltersGeneralModule.h:15
vtkGetMacro
#define vtkGetMacro(name, type)
Definition: vtkSetGet.h:93
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:86
vtkDataSetAlgorithm.h
vtkBrownianPoints::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent)
vtkBrownianPoints::RequestData
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
VTK_DOUBLE_MAX
#define VTK_DOUBLE_MAX
Definition: vtkType.h:142