Graphics/vtkOutlineCornerSource.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
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&);
00067 void operator=(const vtkOutlineCornerSource&);
00068 };
00069
00070 #endif
00071
00072