VTK
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 =========================================================================*/
00026 #ifndef __vtkBrownianPoints_h
00027 #define __vtkBrownianPoints_h
00028 
00029 #include "vtkFiltersGeneralModule.h" // For export macro
00030 #include "vtkDataSetAlgorithm.h"
00031 
00032 class VTKFILTERSGENERAL_EXPORT vtkBrownianPoints : public vtkDataSetAlgorithm
00033 {
00034 public:
00036   static vtkBrownianPoints *New();
00037 
00038   vtkTypeMacro(vtkBrownianPoints,vtkDataSetAlgorithm);
00039   void PrintSelf(ostream& os, vtkIndent indent);
00040 
00042 
00043   vtkSetClampMacro(MinimumSpeed,double,0.0,VTK_DOUBLE_MAX);
00044   vtkGetMacro(MinimumSpeed,double);
00046 
00048 
00049   vtkSetClampMacro(MaximumSpeed,double,0.0,VTK_DOUBLE_MAX);
00050   vtkGetMacro(MaximumSpeed,double);
00052 
00053 protected:
00054   vtkBrownianPoints();
00055   ~vtkBrownianPoints() {};
00056 
00057   virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
00058   double MinimumSpeed;
00059   double MaximumSpeed;
00060 private:
00061   vtkBrownianPoints(const vtkBrownianPoints&);  // Not implemented.
00062   void operator=(const vtkBrownianPoints&);  // Not implemented.
00063 };
00064 
00065 #endif