VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
Filters
General
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
38
vtkTypeMacro(
vtkBrownianPoints
,
vtkDataSetAlgorithm
);
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
:
54
vtkBrownianPoints
();
55
~vtkBrownianPoints
() {};
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
Generated on Thu May 24 2012 22:22:15 for VTK by
1.8.1