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