VTK
/Users/kitware/Dashboards/MyTests/VTK_BLD_Release_docs/Utilities/Doxygen/dox/Filters/General/vtkBrownianPoints.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkBrownianPoints.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 
00014 =========================================================================*/
00029 #ifndef vtkBrownianPoints_h
00030 #define vtkBrownianPoints_h
00031 
00032 #include "vtkFiltersGeneralModule.h" // For export macro
00033 #include "vtkDataSetAlgorithm.h"
00034 
00035 class VTKFILTERSGENERAL_EXPORT vtkBrownianPoints : public vtkDataSetAlgorithm
00036 {
00037 public:
00039   static vtkBrownianPoints *New();
00040 
00041   vtkTypeMacro(vtkBrownianPoints,vtkDataSetAlgorithm);
00042   void PrintSelf(ostream& os, vtkIndent indent);
00043 
00045 
00046   vtkSetClampMacro(MinimumSpeed,double,0.0,VTK_DOUBLE_MAX);
00047   vtkGetMacro(MinimumSpeed,double);
00049 
00051 
00052   vtkSetClampMacro(MaximumSpeed,double,0.0,VTK_DOUBLE_MAX);
00053   vtkGetMacro(MaximumSpeed,double);
00055 
00056 protected:
00057   vtkBrownianPoints();
00058   ~vtkBrownianPoints() {}
00059 
00060   virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
00061   double MinimumSpeed;
00062   double MaximumSpeed;
00063 private:
00064   vtkBrownianPoints(const vtkBrownianPoints&);  // Not implemented.
00065   void operator=(const vtkBrownianPoints&);  // Not implemented.
00066 };
00067 
00068 #endif