/usr/include/vtk-6.3/vtkAbstractMapper3D.h is in libvtk6-dev 6.3.0+dfsg1-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkAbstractMapper3D.h
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 vtkAbstractMapper3D - abstract class specifies interface to map 3D data
// .SECTION Description
// vtkAbstractMapper3D is an abstract class to specify interface between 3D
// data and graphics primitives or software rendering techniques. Subclasses
// of vtkAbstractMapper3D can be used for rendering geometry or rendering
// volumetric data.
//
// This class also defines an API to support hardware clipping planes (at most
// six planes can be defined). It also provides geometric data about the input
// data it maps, such as the bounding box and center.
//
// .SECTION See Also
// vtkAbstractMapper vtkMapper vtkPolyDataMapper vtkVolumeMapper
#ifndef vtkAbstractMapper3D_h
#define vtkAbstractMapper3D_h
#include "vtkRenderingCoreModule.h" // For export macro
#include "vtkAbstractMapper.h"
class vtkWindow;
class vtkDataSet;
class vtkMatrix4x4;
class VTKRENDERINGCORE_EXPORT vtkAbstractMapper3D : public vtkAbstractMapper
{
public:
vtkTypeMacro(vtkAbstractMapper3D, vtkAbstractMapper);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Return bounding box (array of six doubles) of data expressed as
// (xmin,xmax, ymin,ymax, zmin,zmax).
// Update this->Bounds as a side effect.
virtual double *GetBounds() = 0;
// Description:
// Get the bounds for this mapper as (Xmin,Xmax,Ymin,Ymax,Zmin,Zmax).
virtual void GetBounds(double bounds[6]);
// Description:
// Return the Center of this mapper's data.
double *GetCenter();
void GetCenter(double center[3])
{
double *rc = this->GetCenter();
center[0] = rc[0]; center[1] = rc[1]; center[2] = rc[2];
}
// Description:
// Return the diagonal length of this mappers bounding box.
double GetLength();
// Description:
// Is this a ray cast mapper? A subclass would return 1 if the
// ray caster is needed to generate an image from this mapper.
virtual int IsARayCastMapper()
{ return 0; }
// Description:
// Is this a "render into image" mapper? A subclass would return 1 if the
// mapper produces an image by rendering into a software image buffer.
virtual int IsARenderIntoImageMapper()
{ return 0; }
// Description:
// Get the ith clipping plane as a homogeneous plane equation.
// Use GetNumberOfClippingPlanes to get the number of planes.
void GetClippingPlaneInDataCoords(
vtkMatrix4x4 *propMatrix, int i, double planeEquation[4]);
// Description:
// Get the number of clipping planes.
int GetNumberOfClippingPlanes();
protected:
vtkAbstractMapper3D();
~vtkAbstractMapper3D() {}
double Bounds[6];
double Center[3];
private:
vtkAbstractMapper3D(const vtkAbstractMapper3D&); // Not implemented.
void operator=(const vtkAbstractMapper3D&); // Not implemented.
};
#endif
|