00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkMesaProperty.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 =========================================================================*/ 00034 #ifndef __vtkMesaProperty_h 00035 #define __vtkMesaProperty_h 00036 00037 #include "vtkProperty.h" 00038 00039 class vtkMesaRenderer; 00040 00041 class VTK_RENDERING_EXPORT vtkMesaProperty : public vtkProperty 00042 { 00043 public: 00044 static vtkMesaProperty *New(); 00045 vtkTypeRevisionMacro(vtkMesaProperty,vtkProperty); 00046 virtual void PrintSelf(ostream& os, vtkIndent indent); 00047 00049 void Render(vtkActor *a, vtkRenderer *ren); 00050 00052 void BackfaceRender(vtkActor *a, vtkRenderer *ren); 00053 00054 protected: 00055 vtkMesaProperty() {}; 00056 ~vtkMesaProperty() {}; 00057 private: 00058 vtkMesaProperty(const vtkMesaProperty&); // Not implemented. 00059 void operator=(const vtkMesaProperty&); // Not implemented. 00060 }; 00061 00062 #endif