VTK
vtkDataSetMapper.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkDataSetMapper.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 =========================================================================*/
33 #ifndef vtkDataSetMapper_h
34 #define vtkDataSetMapper_h
35 
36 #include "vtkRenderingCoreModule.h" // For export macro
37 #include "vtkMapper.h"
38 
39 class vtkPolyDataMapper;
41 
42 class VTKRENDERINGCORE_EXPORT vtkDataSetMapper : public vtkMapper
43 {
44 public:
45  static vtkDataSetMapper *New();
46  vtkTypeMacro(vtkDataSetMapper, vtkMapper);
47  void PrintSelf(ostream& os, vtkIndent indent);
48  void Render(vtkRenderer *ren, vtkActor *act);
49 
51 
54  vtkGetObjectMacro(PolyDataMapper, vtkPolyDataMapper);
56 
63 
68 
70 
73  void SetInputData(vtkDataSet *input);
76 
77 protected:
80 
83 
84  void ReportReferences(vtkGarbageCollector*) VTK_OVERRIDE;
85 
86  // see algorithm for more info
87  virtual int FillInputPortInformation(int port, vtkInformation* info);
88 
89 private:
90  vtkDataSetMapper(const vtkDataSetMapper&) VTK_DELETE_FUNCTION;
91  void operator=(const vtkDataSetMapper&) VTK_DELETE_FUNCTION;
92 };
93 
94 #endif
represents an object (geometry & properties) in a rendered scene
Definition: vtkActor.h:51
vtkDataSetSurfaceFilter * GeometryExtractor
virtual void ReleaseGraphicsResources(vtkWindow *)
Release any graphics resources that are being consumed by this mapper.
Definition: vtkMapper.h:119
Store vtkAlgorithm input/output information.
abstract class to specify dataset behavior
Definition: vtkDataSet.h:62
void ReportReferences(vtkGarbageCollector *) override
abstract specification for renderers
Definition: vtkRenderer.h:63
vtkTypeUInt64 vtkMTimeType
Definition: vtkType.h:248
Detect and break reference loops.
window superclass for vtkRenderWindow
Definition: vtkWindow.h:37
map vtkDataSet and derived classes to graphics primitives
a simple class to control print indentation
Definition: vtkIndent.h:39
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
abstract class specifies interface to map data to graphics primitives
Definition: vtkMapper.h:91
vtkPolyDataMapper * PolyDataMapper
map vtkPolyData to graphics primitives
vtkMTimeType GetMTime()
Overload standard modified time function.
static vtkAlgorithm * New()
vtkDataSet * GetInput()
Get the input as a vtkDataSet.
Extracts outer (polygonal) surface.
virtual void Render(vtkRenderer *ren, vtkActor *a)=0
Method initiates the mapping process.