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

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 =========================================================================*/
00037 #ifndef __vtkOutlineCornerSource_h
00038 #define __vtkOutlineCornerSource_h
00039 
00040 #include "vtkOutlineSource.h"
00041 
00042 class VTK_GRAPHICS_EXPORT vtkOutlineCornerSource : public vtkOutlineSource
00043 {
00044 public:
00045   vtkTypeRevisionMacro(vtkOutlineCornerSource,vtkOutlineSource);
00046   void PrintSelf(ostream& os, vtkIndent indent);
00047 
00049   static vtkOutlineCornerSource *New();
00050 
00052 
00054   vtkSetClampMacro(CornerFactor, float, 0.001, 0.5);
00055   vtkGetMacro(CornerFactor, float);
00057 
00058 protected:
00059   vtkOutlineCornerSource();
00060   ~vtkOutlineCornerSource() {};
00061 
00062   void Execute();
00063 
00064   float CornerFactor;
00065 private:
00066   vtkOutlineCornerSource(const vtkOutlineCornerSource&);  // Not implemented.
00067   void operator=(const vtkOutlineCornerSource&);  // Not implemented.
00068 };
00069 
00070 #endif
00071 
00072