dox/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
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&);
00056
void operator=(
const vtkOutlineCornerSource&);
00057 };
00058
00059
#endif
00060
00061