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
00022
#ifndef __vtkOutlineCornerSource_h
00023
#define __vtkOutlineCornerSource_h
00024
00025
#include "vtkOutlineSource.h"
00026
00027 class VTK_GRAPHICS_EXPORT vtkOutlineCornerSource :
public vtkOutlineSource
00028 {
00029
public:
00030 vtkTypeRevisionMacro(vtkOutlineCornerSource,
vtkOutlineSource);
00031
void PrintSelf(ostream& os,
vtkIndent indent);
00032
00034
static vtkOutlineCornerSource *
New();
00035
00037
00039 vtkSetClampMacro(CornerFactor,
double, 0.001, 0.5);
00040 vtkGetMacro(CornerFactor,
double);
00042
00043
protected:
00044 vtkOutlineCornerSource();
00045 ~vtkOutlineCornerSource() {};
00046
00047
void Execute();
00048
00049 double CornerFactor;
00050
private:
00051 vtkOutlineCornerSource(
const vtkOutlineCornerSource&);
00052
void operator=(
const vtkOutlineCornerSource&);
00053 };
00054
00055
#endif
00056
00057