vtkScaledTextActor.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00035 #ifndef __vtkScaledTextActor_h
00036 #define __vtkScaledTextActor_h
00037
00038 #include "vtkTextActor.h"
00039
00040 class VTK_RENDERING_EXPORT vtkScaledTextActor : public vtkTextActor
00041 {
00042 public:
00043 vtkTypeRevisionMacro(vtkScaledTextActor,vtkTextActor);
00044 virtual void PrintSelf(ostream& os, vtkIndent indent);
00045
00048 static vtkScaledTextActor *New();
00049
00050 protected:
00051 vtkScaledTextActor();
00052 private:
00053 vtkScaledTextActor(const vtkScaledTextActor&);
00054 void operator=(const vtkScaledTextActor&);
00055 };
00056
00057
00058 #endif
00059