VTK
vtkPlotParallelCoordinates.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPlotParallelCoordinates.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 
25 #ifndef vtkPlotParallelCoordinates_h
26 #define vtkPlotParallelCoordinates_h
27 
28 #include "vtkChartsCoreModule.h" // For export macro
29 #include "vtkPlot.h"
30 #include "vtkScalarsToColors.h" // For VTK_COLOR_MODE_DEFAULT and _MAP_SCALARS
31 #include "vtkStdString.h" // For vtkStdString ivars
32 
34 class vtkTable;
35 class vtkStdString;
36 class vtkScalarsToColors;
38 
39 class VTKCHARTSCORE_EXPORT vtkPlotParallelCoordinates : public vtkPlot
40 {
41 public:
43  virtual void PrintSelf(ostream &os, vtkIndent indent);
44 
49 
55  virtual void Update();
56 
60  virtual bool Paint(vtkContext2D *painter);
61 
68  virtual bool PaintLegend(vtkContext2D *painter, const vtkRectf& rect,
69  int legendIndex);
70 
74  virtual void GetBounds(double bounds[4]);
75 
79  bool SetSelectionRange(int Axis, float low, float high);
80 
85 
87 
90  virtual void SetInputData(vtkTable *table);
91  virtual void SetInputData(vtkTable *table, const vtkStdString&,
92  const vtkStdString&)
93  {
94  this->SetInputData(table);
95  }
97 
99 
105 
110  virtual void CreateDefaultLookupTable();
111 
113 
116  vtkSetMacro(ScalarVisibility,int);
117  vtkGetMacro(ScalarVisibility,int);
118  vtkBooleanMacro(ScalarVisibility,int);
120 
122 
127  void SelectColorArray(vtkIdType arrayNum);
128  void SelectColorArray(const vtkStdString &arrayName);
130 
135 
136 protected:
139 
144 
146 
149  class Private;
150  Private* Storage;
152 
157 
159 
167 
168 private:
169  vtkPlotParallelCoordinates(const vtkPlotParallelCoordinates &) VTK_DELETE_FUNCTION;
170  void operator=(const vtkPlotParallelCoordinates &) VTK_DELETE_FUNCTION;
171 
172 };
173 
174 #endif //vtkPlotParallelCoordinates_h
vtkPlotParallelCoordinates::ColorArrayName
vtkStdString ColorArrayName
Definition: vtkPlotParallelCoordinates.h:165
vtkStdString.h
vtkPlotParallelCoordinates::vtkPlotParallelCoordinates
vtkPlotParallelCoordinates()
vtkPlotParallelCoordinates::SelectColorArray
void SelectColorArray(vtkIdType arrayNum)
When ScalarMode is set to UsePointFieldData or UseCellFieldData, you can specify which array to use f...
vtkPlotParallelCoordinates::Storage
Private * Storage
Definition: vtkPlotParallelCoordinates.h:149
vtkPlotParallelCoordinates::GetColorArrayName
vtkStdString GetColorArrayName()
Get the array name to color by.
vtkPlotParallelCoordinates::SetSelectionRange
bool SetSelectionRange(int Axis, float low, float high)
Set the selection criteria on the given axis in normalized space (0.0 - 1.0).
vtkPlot.h
vtkIdType
int vtkIdType
Definition: vtkType.h:287
vtkPlotParallelCoordinates::UpdateTableCache
bool UpdateTableCache(vtkTable *table)
Update the table cache.
vtkTable
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:69
vtkTimeStamp
record modification and/or execution time
Definition: vtkTimeStamp.h:36
vtkUnsignedCharArray
dynamic, self-adjusting array of unsigned char
Definition: vtkUnsignedCharArray.h:42
vtkPlotParallelCoordinates::SelectColorArray
void SelectColorArray(const vtkStdString &arrayName)
vtkPlotParallelCoordinates::CreateDefaultLookupTable
virtual void CreateDefaultLookupTable()
Create default lookup table.
vtkPlotParallelCoordinates::LookupTable
vtkScalarsToColors * LookupTable
Lookup Table for coloring points by scalar value.
Definition: vtkPlotParallelCoordinates.h:162
vtkPlot::SetInputData
virtual void SetInputData(vtkTable *table)
This is a convenience function to set the input table and the x, y column for the plot.
vtkContext2D
Class for drawing 2D primitives to a graphical context.
Definition: vtkContext2D.h:58
vtkPlot
Abstract class for 2D plots.
Definition: vtkPlot.h:53
vtkPlotParallelCoordinates::New
static vtkPlotParallelCoordinates * New()
Creates a parallel coordinates chart.
vtkPlotParallelCoordinates::GetBounds
virtual void GetBounds(double bounds[4])
Get the bounds for this mapper as (Xmin,Xmax,Ymin,Ymax,Zmin,Zmax).
vtkPlotParallelCoordinates::GetLookupTable
vtkScalarsToColors * GetLookupTable()
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:40
vtkScalarsToColors.h
vtkPlotParallelCoordinates::ScalarVisibility
int ScalarVisibility
Definition: vtkPlotParallelCoordinates.h:164
vtkPlotParallelCoordinates::PaintLegend
virtual bool PaintLegend(vtkContext2D *painter, const vtkRectf &rect, int legendIndex)
Paint legend event for the XY plot, called whenever the legend needs the plot items symbol/mark/line ...
vtkPlotParallelCoordinates::Update
virtual void Update()
Perform any updates to the item that may be necessary before rendering.
vtkPlotParallelCoordinates::Colors
vtkUnsignedCharArray * Colors
Definition: vtkPlotParallelCoordinates.h:163
vtkScalarsToColors
Superclass for mapping scalar values to colors.
Definition: vtkScalarsToColors.h:67
vtkPlotParallelCoordinates::BuildTime
vtkTimeStamp BuildTime
The point cache is marked dirty until it has been initialized.
Definition: vtkPlotParallelCoordinates.h:156
vtkBooleanMacro
vtkBooleanMacro(IgnoreDriverBugs, bool)
Updates the extensions string.
vtkSetMacro
vtkSetMacro(IgnoreDriverBugs, bool)
Updates the extensions string.
vtkPlotParallelCoordinates::SetInputData
virtual void SetInputData(vtkTable *table)
This is a convenience function to set the input table.
vtkPlotParallelCoordinates::ResetSelectionRange
bool ResetSelectionRange()
Reset the selection criteria for the chart.
vtkPlotParallelCoordinates::Paint
virtual bool Paint(vtkContext2D *painter)
Paint event for the XY plot, called whenever the chart needs to be drawn.
vtkChartParallelCoordinates
Factory class for drawing 2D charts.
Definition: vtkChartParallelCoordinates.h:39
vtkPlotParallelCoordinates
Class for drawing a parallel coordinate plot given columns from a vtkTable.
Definition: vtkPlotParallelCoordinates.h:40
vtkStdString
Wrapper around std::string to keep symbols short.
Definition: vtkStdString.h:49
vtkPlotParallelCoordinates::SetLookupTable
void SetLookupTable(vtkScalarsToColors *lut)
Specify a lookup table for the mapper to use.
vtkPlotParallelCoordinates::SetInputData
virtual void SetInputData(vtkTable *table, const vtkStdString &, const vtkStdString &)
Definition: vtkPlotParallelCoordinates.h:91
vtkRectf
Definition: vtkRect.h:297
vtkPlotParallelCoordinates::PrintSelf
virtual void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
vtkPlotParallelCoordinates::~vtkPlotParallelCoordinates
~vtkPlotParallelCoordinates()