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

dox/Graphics/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 =========================================================================*/ 00026 #ifndef __vtkBrownianPoints_h 00027 #define __vtkBrownianPoints_h 00028 00029 #include "vtkDataSetToDataSetFilter.h" 00030 00031 class VTK_GRAPHICS_EXPORT vtkBrownianPoints : public vtkDataSetToDataSetFilter 00032 { 00033 public: 00035 static vtkBrownianPoints *New(); 00036 00037 vtkTypeRevisionMacro(vtkBrownianPoints,vtkDataSetToDataSetFilter); 00038 void PrintSelf(ostream& os, vtkIndent indent); 00039 00041 00042 vtkSetClampMacro(MinimumSpeed,double,0.0,VTK_DOUBLE_MAX); 00043 vtkGetMacro(MinimumSpeed,double); 00045 00047 00048 vtkSetClampMacro(MaximumSpeed,double,0.0,VTK_DOUBLE_MAX); 00049 vtkGetMacro(MaximumSpeed,double); 00051 00052 protected: 00053 vtkBrownianPoints(); 00054 ~vtkBrownianPoints() {}; 00055 00056 void Execute(); 00057 double MinimumSpeed; 00058 double MaximumSpeed; 00059 private: 00060 vtkBrownianPoints(const vtkBrownianPoints&); // Not implemented. 00061 void operator=(const vtkBrownianPoints&); // Not implemented. 00062 }; 00063 00064 #endif 00065 00066