VTK
vtkPolyDataMapper.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPolyDataMapper.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
31 #ifndef vtkPolyDataMapper_h
32 #define vtkPolyDataMapper_h
33 
34 #include "vtkRenderingCoreModule.h" // For export macro
35 #include "vtkMapper.h"
36 //#include "vtkTexture.h" // used to include texture unit enum.
37 
38 class vtkPolyData;
39 class vtkRenderer;
40 class vtkRenderWindow;
41 
42 class VTKRENDERINGCORE_EXPORT vtkPolyDataMapper : public vtkMapper
43 {
44 public:
45  static vtkPolyDataMapper *New();
46  vtkTypeMacro(vtkPolyDataMapper, vtkMapper);
47  void PrintSelf(ostream& os, vtkIndent indent) override;
48 
52  virtual void RenderPiece(vtkRenderer *ren, vtkActor *act) = 0;
53 
57  void Render(vtkRenderer *ren, vtkActor *act) override;
58 
60 
63  void SetInputData(vtkPolyData *in);
66 
68 
71  void Update(int port) override;
72  void Update() override;
73  int Update(int port, vtkInformationVector* requests) override;
74  int Update(vtkInformation* requests) override;
76 
78 
81  vtkSetMacro(Piece, int);
82  vtkGetMacro(Piece, int);
83  vtkSetMacro(NumberOfPieces, int);
84  vtkGetMacro(NumberOfPieces, int);
85  vtkSetMacro(NumberOfSubPieces, int);
86  vtkGetMacro(NumberOfSubPieces, int);
88 
90 
93  vtkSetMacro(GhostLevel, int);
94  vtkGetMacro(GhostLevel, int);
96 
101  double *GetBounds() VTK_SIZEHINT(6) override;
102  void GetBounds(double bounds[6]) override
103  { this->Superclass::GetBounds(bounds); }
104 
109 
122  virtual void MapDataArrayToVertexAttribute(
123  const char* vertexAttributeName,
124  const char* dataArrayName, int fieldAssociation, int componentno = -1);
125 
126  // Specify a data array to use as the texture coordinate
127  // for a named texture. See vtkProperty.h for how to
128  // name textures.
129  virtual void MapDataArrayToMultiTextureAttribute(
130  const char *textureName,
131  const char* dataArrayName, int fieldAssociation, int componentno = -1);
132 
133  // deprecated in favor of the const char * signature
134  VTK_LEGACY(virtual void MapDataArrayToMultiTextureAttribute(
135  int unit,
136  const char* dataArrayName, int fieldAssociation, int componentno = -1));
137 
141  virtual void RemoveVertexAttributeMapping(const char* vertexAttributeName);
142 
146  virtual void RemoveAllVertexAttributeMappings();
147 
153  vtkInformationVector*) override;
154 
155 protected:
157  ~vtkPolyDataMapper() override {}
158 
164  virtual void ComputeBounds();
165 
166  int Piece;
170 
171  int FillInputPortInformation(int, vtkInformation*) override;
172 
173 private:
174  vtkPolyDataMapper(const vtkPolyDataMapper&) = delete;
175  void operator=(const vtkPolyDataMapper&) = delete;
176 };
177 
178 #endif
represents an object (geometry & properties) in a rendered scene
Definition: vtkActor.h:51
void ShallowCopy(vtkAbstractMapper *m)
Make a shallow copy of this mapper.
Store vtkAlgorithm input/output information.
virtual int ProcessRequest(vtkInformation *request, vtkInformationVector **inInfo, vtkInformationVector *outInfo)
Upstream/Downstream requests form the generalized interface through which executives invoke a algorit...
abstract specification for renderers
Definition: vtkRenderer.h:63
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:85
a simple class to control print indentation
Definition: vtkIndent.h:39
virtual double * GetBounds()=0
Return bounding box (array of six doubles) of data expressed as (xmin,xmax, ymin,ymax, zmin,zmax).
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
virtual void Update()
Bring this algorithm's outputs up-to-date.
#define VTK_SIZEHINT(...)
virtual int FillInputPortInformation(int port, vtkInformation *info)
Fill the input port information objects for this algorithm.
abstract class specifies interface to map data to graphics primitives
Definition: vtkMapper.h:83
~vtkPolyDataMapper() override
abstract class specifies interface to map data
map vtkPolyData to graphics primitives
create a window for renderers to draw into
Store zero or more vtkInformation instances.
static vtkAlgorithm * New()
double * GetBounds() override
Return bounding box (array of six doubles) of data expressed as (xmin,xmax, ymin,ymax, zmin,zmax).
vtkDataSet * GetInput()
Get the input as a vtkDataSet.
virtual void Render(vtkRenderer *ren, vtkActor *a)=0
Method initiates the mapping process.