VTK  9.2.5
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 =========================================================================*/
139 #ifndef vtkDataSetMapper_h
140 #define vtkDataSetMapper_h
141 
142 #include "vtkMapper.h"
143 #include "vtkRenderingCoreModule.h" // For export macro
144 
145 class vtkPolyDataMapper;
147 
148 class VTKRENDERINGCORE_EXPORT vtkDataSetMapper : public vtkMapper
149 {
150 public:
152  vtkTypeMacro(vtkDataSetMapper, vtkMapper);
153  void PrintSelf(ostream& os, vtkIndent indent) override;
154  void Render(vtkRenderer* ren, vtkActor* act) override;
155 
157 
160  vtkGetObjectMacro(PolyDataMapper, vtkPolyDataMapper);
162 
169 
173  vtkMTimeType GetMTime() override;
174 
176 
179  void SetInputData(vtkDataSet* input);
182 
183 protected:
185  ~vtkDataSetMapper() override;
186 
189 
191 
192  // see algorithm for more info
194 
195 private:
196  vtkDataSetMapper(const vtkDataSetMapper&) = delete;
197  void operator=(const vtkDataSetMapper&) = delete;
198 };
199 
200 #endif
represents an object (geometry & properties) in a rendered scene
Definition: vtkActor.h:161
map vtkDataSet and derived classes to graphics primitives
void ReportReferences(vtkGarbageCollector *) override
void ReleaseGraphicsResources(vtkWindow *) override
Release any graphics resources that are being consumed by this mapper.
~vtkDataSetMapper() override
static vtkDataSetMapper * New()
vtkDataSetSurfaceFilter * GeometryExtractor
void Render(vtkRenderer *ren, vtkActor *act) override
Method initiates the mapping process.
vtkPolyDataMapper * PolyDataMapper
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
vtkDataSet * GetInput()
Set the Input of this mapper.
vtkMTimeType GetMTime() override
Get the mtime also considering the lookup table.
void SetInputData(vtkDataSet *input)
Set the Input of this mapper.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Extracts outer surface (as vtkPolyData) of any dataset.
abstract class to specify dataset behavior
Definition: vtkDataSet.h:172
Detect and break reference loops.
a simple class to control print indentation
Definition: vtkIndent.h:119
Store vtkAlgorithm input/output information.
abstract class specifies interface to map data to graphics primitives
Definition: vtkMapper.h:177
map vtkPolyData to graphics primitives
abstract specification for renderers
Definition: vtkRenderer.h:182
window superclass for vtkRenderWindow
Definition: vtkWindow.h:39
@ info
Definition: vtkX3D.h:382
@ port
Definition: vtkX3D.h:453
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:287