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

Graphics/vtkBrownianPoints.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkBrownianPoints.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 =========================================================================*/
00042 #ifndef __vtkBrownianPoints_h
00043 #define __vtkBrownianPoints_h
00044 
00045 #include "vtkDataSetToDataSetFilter.h"
00046 
00047 class VTK_GRAPHICS_EXPORT vtkBrownianPoints : public vtkDataSetToDataSetFilter
00048 {
00049 public:
00051   static vtkBrownianPoints *New();
00052 
00053   vtkTypeRevisionMacro(vtkBrownianPoints,vtkDataSetToDataSetFilter);
00054   void PrintSelf(ostream& os, vtkIndent indent);
00055 
00057 
00058   vtkSetClampMacro(MinimumSpeed,float,0.0,VTK_LARGE_FLOAT);
00059   vtkGetMacro(MinimumSpeed,float);
00061 
00063 
00064   vtkSetClampMacro(MaximumSpeed,float,0.0,VTK_LARGE_FLOAT);
00065   vtkGetMacro(MaximumSpeed,float);
00067 
00068 protected:
00069   vtkBrownianPoints();
00070   ~vtkBrownianPoints() {};
00071 
00072   void Execute();
00073   float MinimumSpeed;
00074   float MaximumSpeed;
00075 private:
00076   vtkBrownianPoints(const vtkBrownianPoints&);  // Not implemented.
00077   void operator=(const vtkBrownianPoints&);  // Not implemented.
00078 };
00079 
00080 #endif
00081 
00082