VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
Common
Core
vtkBoxMuellerRandomSequence.h
Go to the documentation of this file.
1
/*=========================================================================
2
3
Program: Visualization Toolkit
4
Module: vtkBoxMuellerRandomSequence.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
=========================================================================*/
25
#ifndef __vtkBoxMuellerRandomSequence_h
26
#define __vtkBoxMuellerRandomSequence_h
27
28
#include "vtkCommonCoreModule.h"
// For export macro
29
#include "
vtkGaussianRandomSequence.h
"
30
31
class
VTKCOMMONCORE_EXPORT
vtkBoxMuellerRandomSequence
:
public
vtkGaussianRandomSequence
32
{
33
public
:
34
vtkTypeMacro(
vtkBoxMuellerRandomSequence
,
vtkGaussianRandomSequence
);
35
void
PrintSelf
(ostream& os,
vtkIndent
indent);
36
37
static
vtkBoxMuellerRandomSequence
*
New
();
38
40
virtual
double
GetValue
();
41
43
virtual
void
Next
();
44
46
vtkRandomSequence
*GetUniformSequence();
47
50
void
SetUniformSequence(
vtkRandomSequence
*uniformSequence);
51
52
protected
:
53
vtkBoxMuellerRandomSequence
();
54
virtual
~
vtkBoxMuellerRandomSequence
();
55
56
vtkRandomSequence
*
UniformSequence
;
57
double
Value
;
58
private
:
59
vtkBoxMuellerRandomSequence
(
const
vtkBoxMuellerRandomSequence
&);
// Not implemented.
60
void
operator=(
const
vtkBoxMuellerRandomSequence
&);
// Not implemented.
61
};
62
63
#endif // #ifndef __vtkBoxMuellerRandomSequence_h
Generated on Thu May 24 2012 22:22:08 for VTK by
1.8.1