00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkMesaActor.h,v $ 00005 00006 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00007 All rights reserved. 00008 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 00013 00014 =========================================================================*/ 00028 #ifndef __vtkMesaActor_h 00029 #define __vtkMesaActor_h 00030 00031 #include "vtkActor.h" 00032 00033 class vtkMesaRenderer; 00034 00035 class VTK_RENDERING_EXPORT vtkMesaActor : public vtkActor 00036 { 00037 protected: 00038 00039 public: 00040 static vtkMesaActor *New(); 00041 vtkTypeRevisionMacro(vtkMesaActor,vtkActor); 00042 virtual void PrintSelf(ostream& os, vtkIndent indent); 00043 00045 void Render(vtkRenderer *ren, vtkMapper *mapper); 00046 00049 vtkProperty* MakeProperty(); 00050 protected: 00051 vtkMesaActor() {}; 00052 ~vtkMesaActor() {}; 00053 00054 private: 00055 vtkMesaActor(const vtkMesaActor&); // Not implemented. 00056 void operator=(const vtkMesaActor&); // Not implemented. 00057 }; 00058 00059 #endif 00060