VTK
dox/Common/vtkGaussianRandomSequence.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkGaussianRandomSequence.h
00005 
00006   Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
00007   All rights reserved.
00008   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00009 
00010      This software is distributed WITHOUT ANY WARRANTY; without even
00011      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
00012      PURPOSE.  See the above copyright notice for more information.
00013 =========================================================================*/
00024 #ifndef __vtkGaussianRandomSequence_h
00025 #define __vtkGaussianRandomSequence_h
00026 
00027 #include "vtkRandomSequence.h"
00028 
00029 class VTK_COMMON_EXPORT vtkGaussianRandomSequence : public vtkRandomSequence
00030 {
00031 public:
00032   vtkTypeMacro(vtkGaussianRandomSequence,vtkRandomSequence);
00033   void PrintSelf(ostream& os, vtkIndent indent);
00034   
00036 
00040   virtual double GetScaledValue(double mean,
00041                                 double standardDeviation);
00043   
00044 protected:
00045   vtkGaussianRandomSequence();
00046   virtual ~vtkGaussianRandomSequence();
00047 private:
00048   vtkGaussianRandomSequence(const vtkGaussianRandomSequence&);  // Not implemented.
00049   void operator=(const vtkGaussianRandomSequence&);  // Not implemented.
00050 };
00051 
00052 #endif // #ifndef __vtkGaussianRandomSequence_h