VTK
vtkGraphMapper.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkGraphMapper.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 =========================================================================*/
15 /*-------------------------------------------------------------------------
16  Copyright 2008 Sandia Corporation.
17  Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
18  the U.S. Government retains certain rights in this software.
19 -------------------------------------------------------------------------*/
33 #ifndef vtkGraphMapper_h
34 #define vtkGraphMapper_h
35 
36 #include "vtkRenderingCoreModule.h" // For export macro
37 #include "vtkMapper.h"
38 
39 #include "vtkSmartPointer.h" // Required for smart pointer internal ivars.
40 
41 class vtkActor2D;
42 class vtkMapArrayValues;
43 class vtkCamera;
44 class vtkFollower;
45 class vtkGraph;
46 class vtkGlyph3D;
47 class vtkGraphToPolyData;
48 class vtkIconGlyphFilter;
49 class vtkCellCenters;
50 class vtkPolyData;
51 class vtkPolyDataMapper;
53 class vtkLookupTable;
55 class vtkTexture;
56 class vtkTexturedActor2D;
58 
59 class VTKRENDERINGCORE_EXPORT vtkGraphMapper : public vtkMapper
60 {
61 public:
62  static vtkGraphMapper *New();
63  vtkTypeMacro(vtkGraphMapper, vtkMapper);
64  void PrintSelf(ostream& os, vtkIndent indent);
65  void Render(vtkRenderer *ren, vtkActor *act);
66 
68 
71  void SetVertexColorArrayName(const char* name);
72  const char* GetVertexColorArrayName();
74 
76 
79  void SetColorVertices(bool vis);
80  bool GetColorVertices();
81  void ColorVerticesOn();
82  void ColorVerticesOff();
84 
86 
92  void SetScaledGlyphs(bool arg);
93  vtkGetMacro(ScaledGlyphs, bool);
94  vtkBooleanMacro(ScaledGlyphs, bool);
96 
98 
101  vtkSetStringMacro(ScalingArrayName);
102  vtkGetStringMacro(ScalingArrayName);
104 
106 
109  void SetEdgeVisibility(bool vis);
110  bool GetEdgeVisibility();
111  vtkBooleanMacro(EdgeVisibility, bool);
113 
115 
118  void SetEdgeColorArrayName(const char* name);
119  const char* GetEdgeColorArrayName();
121 
123 
126  void SetColorEdges(bool vis);
127  bool GetColorEdges();
128  void ColorEdgesOn();
129  void ColorEdgesOff();
131 
133 
136  vtkSetStringMacro(EnabledEdgesArrayName);
137  vtkGetStringMacro(EnabledEdgesArrayName);
139 
141 
144  vtkSetMacro(EnableEdgesByArray, int);
145  vtkGetMacro(EnableEdgesByArray, int);
146  vtkBooleanMacro(EnableEdgesByArray, int);
148 
150 
153  vtkSetStringMacro(EnabledVerticesArrayName);
154  vtkGetStringMacro(EnabledVerticesArrayName);
156 
158 
161  vtkSetMacro(EnableVerticesByArray, int);
162  vtkGetMacro(EnableVerticesByArray, int);
163  vtkBooleanMacro(EnableVerticesByArray, int);
165 
167 
170  void SetIconArrayName(const char* name);
171  const char* GetIconArrayName();
173 
179  void AddIconType(char *type, int index);
180 
184  void ClearIconTypes();
185 
187 
190  void SetIconSize(int *size);
191  int *GetIconSize();
193 
198  void SetIconAlignment(int alignment);
199 
201 
204  vtkTexture *GetIconTexture();
205  void SetIconTexture(vtkTexture *texture);
207 
209 
212  void SetIconVisibility(bool vis);
213  bool GetIconVisibility();
214  vtkBooleanMacro(IconVisibility, bool);
216 
218 
221  vtkGetMacro(VertexPointSize,float);
222  void SetVertexPointSize(float size);
224 
226 
229  vtkGetMacro(EdgeLineWidth,float);
230  void SetEdgeLineWidth(float width);
232 
239 
244 
246 
249  void SetInputData(vtkGraph *input);
250  vtkGraph *GetInput();
252 
257  virtual double *GetBounds();
258  virtual void GetBounds(double* bounds)
259  { Superclass::GetBounds(bounds); }
260 
262 
265  vtkGetObjectMacro(EdgeLookupTable, vtkLookupTable);
266  vtkGetObjectMacro(VertexLookupTable, vtkLookupTable);
268 
269 protected:
270  vtkGraphMapper();
271  ~vtkGraphMapper();
272 
274 
277  vtkGetStringMacro(VertexColorArrayNameInternal);
278  vtkSetStringMacro(VertexColorArrayNameInternal);
279  vtkGetStringMacro(EdgeColorArrayNameInternal);
280  vtkSetStringMacro(EdgeColorArrayNameInternal);
284 
289 
290  vtkGetStringMacro(IconArrayNameInternal);
291  vtkSetStringMacro(IconArrayNameInternal);
292  char* IconArrayNameInternal;
293 
296 
302 
307 
312 
313  // Color maps
316 
317  void ReportReferences(vtkGarbageCollector*) VTK_OVERRIDE;
318 
319  // see algorithm for more info
320  virtual int FillInputPortInformation(int port, vtkInformation* info);
321 
322 private:
323  vtkGraphMapper(const vtkGraphMapper&) VTK_DELETE_FUNCTION;
324  void operator=(const vtkGraphMapper&) VTK_DELETE_FUNCTION;
325 
326  // Helper function
327  vtkPolyData* CreateCircle(bool filled);
328 
329  float VertexPointSize;
330  float EdgeLineWidth;
331  bool ScaledGlyphs;
332  char* ScalingArrayName;
333 };
334 
335 #endif
char * EdgeColorArrayNameInternal
Used to store the vertex and edge color array names.
map vtkGraph and derived classes to graphics primitives
char * EnabledVerticesArrayName
represents an object (geometry & properties) in a rendered scene
Definition: vtkActor.h:51
actor that draws 2D data with texture support
virtual void ReleaseGraphicsResources(vtkWindow *)
Release any graphics resources that are being consumed by this mapper.
Definition: vtkMapper.h:119
char * IconArrayNameInternal
Map values in an input array to different values in an output array of (possibly) different type...
Store vtkAlgorithm input/output information.
Filter that generates a polydata consisting of quads with texture coordinates referring to a set of i...
vtkSmartPointer< vtkPolyDataMapper > OutlineMapper
void ReportReferences(vtkGarbageCollector *) override
a actor that draws 2D data
Definition: vtkActor2D.h:45
map scalar values into colors via a lookup table
abstract specification for renderers
Definition: vtkRenderer.h:63
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:85
vtkSmartPointer< vtkGlyph3D > CircleOutlineGlyph
vtkSmartPointer< vtkIconGlyphFilter > IconGlyph
vtkSmartPointer< vtkActor > OutlineActor
generate points at center of cells
vtkTypeUInt64 vtkMTimeType
Definition: vtkType.h:248
Detect and break reference loops.
vtkSmartPointer< vtkTransformCoordinateSystems > IconTransform
convert a vtkGraph to vtkPolyData
Base class for graph data types.
Definition: vtkGraph.h:287
window superclass for vtkRenderWindow
Definition: vtkWindow.h:37
Make a vtkPolyData with a vertex on each point.
a simple class to control print indentation
Definition: vtkIndent.h:39
a virtual camera for 3D rendering
Definition: vtkCamera.h:50
vtkLookupTable * VertexLookupTable
copy oriented and scaled glyph geometry to every input point
Definition: vtkGlyph3D.h:111
vtkSmartPointer< vtkPolyDataMapper > VertexMapper
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
vtkSmartPointer< vtkGlyph3D > CircleGlyph
handles properties associated with a texture map
Definition: vtkTexture.h:70
vtkGetStringMacro(ExtensionsString)
Returns a string listing all available extensions.
virtual double * GetBounds()=0
Return bounding box (array of six doubles) of data expressed as (xmin,xmax, ymin,ymax, zmin,zmax).
vtkLookupTable * EdgeLookupTable
vtkSmartPointer< vtkActor > EdgeActor
transform points into different coordinate systems
abstract class specifies interface to map data to graphics primitives
Definition: vtkMapper.h:91
vtkSetMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
map vtkPolyData to graphics primitives
a subclass of actor that always faces the camera
Definition: vtkFollower.h:46
vtkMTimeType GetMTime()
Overload standard modified time function.
vtkSmartPointer< vtkTexturedActor2D > IconActor
vtkSmartPointer< vtkActor > VertexActor
char * EnabledEdgesArrayName
virtual double * GetBounds()
Return bounding box (array of six doubles) of data expressed as (xmin,xmax, ymin,ymax, zmin,zmax).
vtkSmartPointer< vtkGraphToPolyData > GraphToPoly
static vtkAlgorithm * New()
vtkBooleanMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
vtkSmartPointer< vtkMapArrayValues > IconTypeToIndex
vtkDataSet * GetInput()
Get the input as a vtkDataSet.
vtkSmartPointer< vtkVertexGlyphFilter > VertexGlyph
vtkSmartPointer< vtkPolyDataMapper2D > IconMapper
virtual void GetBounds(double *bounds)
vtkSmartPointer< vtkPolyDataMapper > EdgeMapper
virtual void Render(vtkRenderer *ren, vtkActor *a)=0
Method initiates the mapping process.
char * VertexColorArrayNameInternal
Used to store the vertex and edge color array names.
draw vtkPolyData onto the image plane