VTK
|
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 "vtkCommonCoreModule.h" // For export macro 00028 #include "vtkRandomSequence.h" 00029 00030 class VTKCOMMONCORE_EXPORT vtkGaussianRandomSequence : public vtkRandomSequence 00031 { 00032 public: 00033 vtkTypeMacro(vtkGaussianRandomSequence,vtkRandomSequence); 00034 void PrintSelf(ostream& os, vtkIndent indent); 00035 00037 00041 virtual double GetScaledValue(double mean, 00042 double standardDeviation); 00044 00045 protected: 00046 vtkGaussianRandomSequence(); 00047 virtual ~vtkGaussianRandomSequence(); 00048 private: 00049 vtkGaussianRandomSequence(const vtkGaussianRandomSequence&); // Not implemented. 00050 void operator=(const vtkGaussianRandomSequence&); // Not implemented. 00051 }; 00052 00053 #endif // #ifndef __vtkGaussianRandomSequence_h