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

vtkBrownianPoints.h

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