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

dox/Graphics/vtkOutlineCornerSource.h

Go to the documentation of this file.
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkOutlineCornerSource.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 =========================================================================*/ 00026 #ifndef __vtkOutlineCornerSource_h 00027 #define __vtkOutlineCornerSource_h 00028 00029 #include "vtkOutlineSource.h" 00030 00031 class VTK_GRAPHICS_EXPORT vtkOutlineCornerSource : public vtkOutlineSource 00032 { 00033 public: 00034 vtkTypeRevisionMacro(vtkOutlineCornerSource,vtkOutlineSource); 00035 void PrintSelf(ostream& os, vtkIndent indent); 00036 00038 static vtkOutlineCornerSource *New(); 00039 00041 00043 vtkSetClampMacro(CornerFactor, float, 0.001, 0.5); 00044 vtkGetMacro(CornerFactor, float); 00046 00047 protected: 00048 vtkOutlineCornerSource(); 00049 ~vtkOutlineCornerSource() {}; 00050 00051 void Execute(); 00052 00053 float CornerFactor; 00054 private: 00055 vtkOutlineCornerSource(const vtkOutlineCornerSource&); // Not implemented. 00056 void operator=(const vtkOutlineCornerSource&); // Not implemented. 00057 }; 00058 00059 #endif 00060 00061