00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkMesaActor.h 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 vtkTypeMacro(vtkMesaActor,vtkActor); 00042 virtual void PrintSelf(ostream& os, vtkIndent indent); 00043 00045 void Render(vtkRenderer *ren, vtkMapper *mapper); 00046 00048 00050 vtkProperty* MakeProperty(); 00051 protected: 00052 vtkMesaActor() {}; 00053 ~vtkMesaActor() {}; 00055 00056 private: 00057 vtkMesaActor(const vtkMesaActor&); // Not implemented. 00058 void operator=(const vtkMesaActor&); // Not implemented. 00059 }; 00060 00061 #endif 00062