Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members   Related Pages  

Imaging/vtkImageNoiseSource.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkImageNoiseSource.h,v $
00005   Language:  C++
00006 
00007   Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen 
00008   All rights reserved.
00009   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00010 
00011      This software is distributed WITHOUT ANY WARRANTY; without even 
00012      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00013      PURPOSE.  See the above copyright notice for more information.
00014 
00015 =========================================================================*/
00044 #ifndef __vtkImageNoiseSource_h
00045 #define __vtkImageNoiseSource_h
00046 
00047 
00048 #include "vtkImageSource.h"
00049 
00050 
00051 class VTK_IMAGING_EXPORT vtkImageNoiseSource : public vtkImageSource 
00052 {
00053 public:
00054   static vtkImageNoiseSource *New();
00055   vtkTypeRevisionMacro(vtkImageNoiseSource,vtkImageSource);
00056   void PrintSelf(ostream& os, vtkIndent indent);
00057 
00059 
00060   vtkSetMacro(Minimum, float);
00061   vtkGetMacro(Minimum, float);
00062   vtkSetMacro(Maximum, float);
00063   vtkGetMacro(Maximum, float);
00065 
00067 
00068   void SetWholeExtent(int xMinx, int xMax, int yMin, int yMax,
00069                       int zMin, int zMax);
00071 
00072 protected:
00073   vtkImageNoiseSource();
00074   ~vtkImageNoiseSource() {};
00075 
00076   float Minimum;
00077   float Maximum;
00078   int WholeExtent[6];
00079 
00080   virtual void ExecuteInformation();
00081   virtual void ExecuteData(vtkDataObject *data);
00082 private:
00083   vtkImageNoiseSource(const vtkImageNoiseSource&);  // Not implemented.
00084   void operator=(const vtkImageNoiseSource&);  // Not implemented.
00085 };
00086 
00087 
00088 #endif
00089 
00090