Cloned library of VTK-5.0.0 with extra build files for internal package management.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

51 lines
1.6 KiB

/*=========================================================================
Program: Visualization Toolkit
Module: $RCSfile: vtkMesaPolyDataMapper2D.h,v $
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME vtkMesaPolyDataMapper2D - 2D PolyData support for Mesa
// .SECTION Description
// vtkMesaPolyDataMapper2D provides 2D PolyData annotation support for
// vtk under Mesa. Normally the user should use vtkPolyDataMapper2D
// which in turn will use this class.
// .SECTION See Also
// vtkPolyDataMapper2D
#ifndef __vtkMesaPolyDataMapper2D_h
#define __vtkMesaPolyDataMapper2D_h
#include "vtkPolyDataMapper2D.h"
class VTK_RENDERING_EXPORT vtkMesaPolyDataMapper2D : public vtkPolyDataMapper2D
{
public:
vtkTypeRevisionMacro(vtkMesaPolyDataMapper2D,vtkPolyDataMapper2D);
static vtkMesaPolyDataMapper2D *New();
virtual void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Actually draw the poly data.
void RenderOverlay(vtkViewport* viewport, vtkActor2D* actor);
protected:
vtkMesaPolyDataMapper2D() {};
~vtkMesaPolyDataMapper2D() {};
private:
vtkMesaPolyDataMapper2D(const vtkMesaPolyDataMapper2D&); // Not implemented.
void operator=(const vtkMesaPolyDataMapper2D&); // Not implemented.
};
#endif