VTK
vtkTreeMapToPolyData.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkTreeMapToPolyData.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 -------------------------------------------------------------------------*/
32 #ifndef vtkTreeMapToPolyData_h
33 #define vtkTreeMapToPolyData_h
34 
35 #include "vtkInfovisLayoutModule.h" // For export macro
36 #include "vtkPolyDataAlgorithm.h"
37 
39 {
40 public:
43  void PrintSelf(ostream& os, vtkIndent indent);
44 
46 
49  virtual void SetRectanglesArrayName(const char* name)
52 
54 
58  virtual void SetLevelArrayName(const char* name)
61 
63 
64  vtkGetMacro(LevelDeltaZ, double);
65  vtkSetMacro(LevelDeltaZ, double);
67 
69 
70  vtkGetMacro(AddNormals, bool);
71  vtkSetMacro(AddNormals, bool);
73 
75 
76 protected:
79 
80  double LevelDeltaZ;
81  bool AddNormals;
82 
84 private:
85  vtkTreeMapToPolyData(const vtkTreeMapToPolyData&); // Not implemented.
86  void operator=(const vtkTreeMapToPolyData&); // Not implemented.
87 };
88 
89 #endif
vtkTreeMapToPolyData::LevelDeltaZ
double LevelDeltaZ
Definition: vtkTreeMapToPolyData.h:80
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:41
vtkTreeMapToPolyData
converts a tree to a polygonal data representing a tree map
Definition: vtkTreeMapToPolyData.h:39
vtkTypeMacro
#define vtkTypeMacro(thisClass, superclass)
Definition: vtkSetGet.h:642
vtkTreeMapToPolyData::New
static vtkTreeMapToPolyData * New()
vtkTreeMapToPolyData::RequestData
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
vtkTreeMapToPolyData::FillInputPortInformation
int FillInputPortInformation(int port, vtkInformation *info)
vtkDataObject::FIELD_ASSOCIATION_VERTICES
@ FIELD_ASSOCIATION_VERTICES
Definition: vtkDataObject.h:234
vtkPolyDataAlgorithm.h
vtkX3D::port
@ port
Definition: vtkX3D.h:447
vtkgl::name
GLuint const GLchar * name
Definition: vtkgl.h:11983
vtkTreeMapToPolyData::SetLevelArrayName
virtual void SetLevelArrayName(const char *name)
Definition: vtkTreeMapToPolyData.h:58
vtkTreeMapToPolyData::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent)
vtkTreeMapToPolyData::~vtkTreeMapToPolyData
~vtkTreeMapToPolyData()
vtkTreeMapToPolyData::AddNormals
bool AddNormals
Definition: vtkTreeMapToPolyData.h:81
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkGetMacro
#define vtkGetMacro(name, type)
Definition: vtkSetGet.h:93
VTKINFOVISLAYOUT_EXPORT
#define VTKINFOVISLAYOUT_EXPORT
Definition: vtkInfovisLayoutModule.h:15
vtkInfovisLayoutModule.h
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:86
vtkSetMacro
vtkSetMacro(IgnoreDriverBugs, bool)
vtkX3D::info
@ info
Definition: vtkX3D.h:376
vtkTreeMapToPolyData::vtkTreeMapToPolyData
vtkTreeMapToPolyData()
vtkTreeMapToPolyData::SetRectanglesArrayName
virtual void SetRectanglesArrayName(const char *name)
Definition: vtkTreeMapToPolyData.h:49
vtkAlgorithm::SetInputArrayToProcess
virtual void SetInputArrayToProcess(int idx, int port, int connection, int fieldAssociation, const char *name)
vtkPolyDataAlgorithm
Superclass for algorithms that produce only polydata as output.
Definition: vtkPolyDataAlgorithm.h:44