1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560
|
/*=========================================================================
Program: Visualization Toolkit
Module: $RCSfile: vtkParallelCoordinatesActor.cxx,v $
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#include "vtkParallelCoordinatesActor.h"
#include "vtkAxisActor2D.h"
#include "vtkCellArray.h"
#include "vtkFieldData.h"
#include "vtkMath.h"
#include "vtkObjectFactory.h"
#include "vtkPolyData.h"
#include "vtkPolyDataMapper2D.h"
#include "vtkTextMapper.h"
#include "vtkTextProperty.h"
#include "vtkViewport.h"
#include "vtkWindow.h"
vtkCxxRevisionMacro(vtkParallelCoordinatesActor, "$Revision: 1.32 $");
vtkStandardNewMacro(vtkParallelCoordinatesActor);
vtkCxxSetObjectMacro(vtkParallelCoordinatesActor,Input,vtkDataObject);
vtkCxxSetObjectMacro(vtkParallelCoordinatesActor,LabelTextProperty,vtkTextProperty);
vtkCxxSetObjectMacro(vtkParallelCoordinatesActor,TitleTextProperty,vtkTextProperty);
//----------------------------------------------------------------------------
// Instantiate object
vtkParallelCoordinatesActor::vtkParallelCoordinatesActor()
{
this->PositionCoordinate->SetCoordinateSystemToNormalizedViewport();
this->PositionCoordinate->SetValue(0.1,0.1);
this->Position2Coordinate->SetValue(0.9, 0.8);
this->IndependentVariables = VTK_IV_COLUMN;
this->N = 0;
this->Input = NULL;
this->Axes = NULL;
this->Mins = NULL;
this->Maxs = NULL;
this->Xs = NULL;
this->Title = NULL;
this->TitleMapper = vtkTextMapper::New();
this->TitleActor = vtkActor2D::New();
this->TitleActor->SetMapper(this->TitleMapper);
this->TitleActor->GetPositionCoordinate()->SetCoordinateSystemToViewport();
this->PlotData = vtkPolyData::New();
this->PlotMapper = vtkPolyDataMapper2D::New();
this->PlotMapper->SetInput(this->PlotData);
this->PlotActor = vtkActor2D::New();
this->PlotActor->SetMapper(this->PlotMapper);
this->NumberOfLabels = 2;
this->LabelTextProperty = vtkTextProperty::New();
this->LabelTextProperty->SetBold(1);
this->LabelTextProperty->SetItalic(1);
this->LabelTextProperty->SetShadow(1);
this->LabelTextProperty->SetFontFamilyToArial();
this->TitleTextProperty = vtkTextProperty::New();
this->TitleTextProperty->ShallowCopy(this->LabelTextProperty);
this->LabelFormat = new char[8];
sprintf(this->LabelFormat,"%s","%-#6.3g");
this->LastPosition[0] =
this->LastPosition[1] =
this->LastPosition2[0] =
this->LastPosition2[1] = 0;
}
//----------------------------------------------------------------------------
vtkParallelCoordinatesActor::~vtkParallelCoordinatesActor()
{
this->TitleMapper->Delete();
this->TitleMapper = NULL;
this->TitleActor->Delete();
this->TitleActor = NULL;
if ( this->Input )
{
this->Input->Delete();
this->Input = NULL;
}
this->Initialize();
this->PlotData->Delete();
this->PlotMapper->Delete();
this->PlotActor->Delete();
if (this->Title)
{
delete [] this->Title;
this->Title = NULL;
}
if (this->LabelFormat)
{
delete [] this->LabelFormat;
this->LabelFormat = NULL;
}
this->SetLabelTextProperty(NULL);
this->SetTitleTextProperty(NULL);
}
//----------------------------------------------------------------------------
// Free-up axes and related stuff
void vtkParallelCoordinatesActor::Initialize()
{
if ( this->Axes )
{
for (int i=0; i<this->N; i++)
{
this->Axes[i]->Delete();
}
delete [] this->Axes;
this->Axes = NULL;
delete [] this->Mins;
this->Mins = NULL;
delete [] this->Maxs;
this->Maxs = NULL;
delete [] this->Xs;
this->Xs = NULL;
}
this->N = 0;
}
//----------------------------------------------------------------------------
// Plot scalar data for each input dataset.
int vtkParallelCoordinatesActor::RenderOverlay(vtkViewport *viewport)
{
int renderedSomething=0;
// Make sure input is up to date.
if ( this->Input == NULL || this->N <= 0 )
{
vtkErrorMacro(<< "Nothing to plot!");
return 0;
}
if ( this->Title != NULL )
{
renderedSomething += this->TitleActor->RenderOverlay(viewport);
}
this->PlotActor->SetProperty(this->GetProperty());
renderedSomething += this->PlotActor->RenderOverlay(viewport);
for (int i=0; i<this->N; i++)
{
renderedSomething += this->Axes[i]->RenderOverlay(viewport);
}
return renderedSomething;
}
//----------------------------------------------------------------------------
int vtkParallelCoordinatesActor::RenderOpaqueGeometry(vtkViewport *viewport)
{
int renderedSomething = 0;
// Initialize
vtkDebugMacro(<<"Plotting parallel coordinates");
// Make sure input is up to date, and that the data is the correct shape to
// plot.
if (!this->Input)
{
vtkErrorMacro(<< "Nothing to plot!");
return renderedSomething;
}
if (!this->TitleTextProperty)
{
vtkErrorMacro(<<"Need title text property to render plot");
return renderedSomething;
}
if (!this->LabelTextProperty)
{
vtkErrorMacro(<<"Need label text property to render plot");
return renderedSomething;
}
// Viewport change may not require rebuild
int positionsHaveChanged = 0;
if (viewport->GetMTime() > this->BuildTime ||
(viewport->GetVTKWindow() &&
viewport->GetVTKWindow()->GetMTime() > this->BuildTime))
{
int *lastPosition =
this->PositionCoordinate->GetComputedViewportValue(viewport);
int *lastPosition2 =
this->Position2Coordinate->GetComputedViewportValue(viewport);
if (lastPosition[0] != this->LastPosition[0] ||
lastPosition[1] != this->LastPosition[1] ||
lastPosition2[0] != this->LastPosition2[0] ||
lastPosition2[1] != this->LastPosition2[1] )
{
this->LastPosition[0] = lastPosition[0];
this->LastPosition[1] = lastPosition[1];
this->LastPosition2[0] = lastPosition2[0];
this->LastPosition2[1] = lastPosition2[1];
positionsHaveChanged = 1;
}
}
// Check modified time to see whether we have to rebuild.
this->Input->Update();
if (positionsHaveChanged ||
this->GetMTime() > this->BuildTime ||
this->Input->GetMTime() > this->BuildTime ||
this->LabelTextProperty->GetMTime() > this->BuildTime ||
this->TitleTextProperty->GetMTime() > this->BuildTime)
{
int *size = viewport->GetSize();
int stringSize[2];
vtkDebugMacro(<<"Rebuilding plot");
// Build axes
if (!this->PlaceAxes(viewport, size))
{
return renderedSomething;
}
// Build title
this->TitleMapper->SetInput(this->Title);
if (this->TitleTextProperty->GetMTime() > this->BuildTime)
{
// Shallow copy here since the justification is changed but we still
// want to allow actors to share the same text property, and in that case
// specifically allow the title and label text prop to be the same.
this->TitleMapper->GetTextProperty()->ShallowCopy(
this->TitleTextProperty);
this->TitleMapper->GetTextProperty()->SetJustificationToCentered();
}
// We could do some caching here, but hey, that's just the title
vtkAxisActor2D::SetFontSize(viewport,
this->TitleMapper,
size,
1.0,
stringSize);
this->TitleActor->GetPositionCoordinate()->
SetValue((this->Xs[0]+this->Xs[this->N-1])/2.0,this->YMax+stringSize[1]/2.0);
this->TitleActor->SetProperty(this->GetProperty());
this->BuildTime.Modified();
} // If need to rebuild the plot
if ( this->Title != NULL )
{
renderedSomething += this->TitleActor->RenderOpaqueGeometry(viewport);
}
this->PlotActor->SetProperty(this->GetProperty());
renderedSomething += this->PlotActor->RenderOpaqueGeometry(viewport);
for (int i=0; i<this->N; i++)
{
renderedSomething += this->Axes[i]->RenderOpaqueGeometry(viewport);
}
return renderedSomething;
}
//----------------------------------------------------------------------------
int vtkParallelCoordinatesActor::PlaceAxes(vtkViewport *viewport, int *vtkNotUsed(size))
{
vtkIdType i, j, ptId;
vtkDataObject *input = this->GetInput();
vtkFieldData *field = input->GetFieldData();
double v;
this->Initialize();
if ( ! field )
{
return 0;
}
// Determine the shape of the field
int numColumns = field->GetNumberOfComponents(); //number of "columns"
vtkIdType numRows = VTK_LARGE_ID; //figure out number of rows
vtkIdType numTuples;
vtkDataArray *array;
for (i=0; i<field->GetNumberOfArrays(); i++)
{
array = field->GetArray(i);
numTuples = array->GetNumberOfTuples();
if ( numTuples < numRows )
{
numRows = numTuples;
}
}
// Determine the number of independent variables
if ( this->IndependentVariables == VTK_IV_COLUMN )
{
this->N = numColumns;
}
else //row
{
this->N = numRows;
}
if ( this->N <= 0 || this->N >= VTK_LARGE_ID )
{
this->N = 0;
vtkErrorMacro(<<"No field data to plot");
return 0;
}
// We need to loop over the field to determine the range of
// each independent variable.
this->Mins = new double [this->N];
this->Maxs = new double [this->N];
for (i=0; i<this->N; i++)
{
this->Mins[i] = VTK_DOUBLE_MAX;
this->Maxs[i] = -VTK_DOUBLE_MAX;
}
if ( this->IndependentVariables == VTK_IV_COLUMN )
{
for (j=0; j<numColumns; j++)
{
for (i=0; i<numRows; i++)
{
v = field->GetComponent(i,j);
if ( v < this->Mins[j] )
{
this->Mins[j] = v;
}
if ( v > this->Maxs[j] )
{
this->Maxs[j] = v;
}
}
}
}
else //row
{
for (j=0; j<numRows; j++)
{
for (i=0; i<numColumns; i++)
{
v = field->GetComponent(j,i);
if ( v < this->Mins[j] )
{
this->Mins[j] = v;
}
if ( v > this->Maxs[j] )
{
this->Maxs[j] = v;
}
}
}
}
// Allocate space and create axes
// TODO: this should be optimized, maybe by keeping a list of allocated
// objects, in order to avoid creation/destruction of axis actors
// and their underlying text properties (i.e. each time an axis is
// created, text properties are created and shallow-assigned a
// font size which value might be "far" from the target font size).
this->Axes = new vtkAxisActor2D* [this->N];
for (i=0; i<this->N; i++)
{
this->Axes[i] = vtkAxisActor2D::New();
this->Axes[i]->GetPositionCoordinate()->SetCoordinateSystemToViewport();
this->Axes[i]->GetPosition2Coordinate()->SetCoordinateSystemToViewport();
this->Axes[i]->SetRange(this->Mins[i],this->Maxs[i]);
this->Axes[i]->AdjustLabelsOff();
this->Axes[i]->SetNumberOfLabels(this->NumberOfLabels);
this->Axes[i]->SetLabelFormat(this->LabelFormat);
this->Axes[i]->SetProperty(this->GetProperty());
// We do not need shallow copy here since we do not modify any attributes
// in that class and we know that vtkAxisActor2D use ShallowCopy internally
// so that the size of the text prop is not affected by the automatic
// adjustment of its text mapper's size.
this->Axes[i]->SetLabelTextProperty(this->LabelTextProperty);
}
this->Xs = new int [this->N];
// Get the location of the corners of the box
int *p1 = this->PositionCoordinate->GetComputedViewportValue(viewport);
int *p2 = this->Position2Coordinate->GetComputedViewportValue(viewport);
// Specify the positions for the axes
this->YMin = p1[1];
this->YMax = p2[1];
for (i=0; i<this->N; i++)
{
this->Xs[i] = (int) (p1[0] + (double)i/((double)this->N) * (p2[0]-p1[0]));
this->Axes[i]->GetPositionCoordinate()->SetValue((double)this->Xs[i],
this->YMin);
this->Axes[i]->GetPosition2Coordinate()->SetValue((double)this->Xs[i],
this->YMax);
}
// Now generate the lines to plot
this->PlotData->Initialize(); //remove old polydata, if any
vtkPoints *pts = vtkPoints::New();
pts->Allocate(numRows*numColumns);
vtkCellArray *lines = vtkCellArray::New();
this->PlotData->SetPoints(pts);
this->PlotData->SetLines(lines);
double x[3]; x[2] = 0.0;
if ( this->IndependentVariables == VTK_IV_COLUMN )
{
lines->Allocate(lines->EstimateSize(numRows,numColumns));
for (j=0; j<numRows; j++)
{
lines->InsertNextCell(numColumns);
for (i=0; i<numColumns; i++)
{
x[0] = this->Xs[i];
v = field->GetComponent(j,i);
if ( (this->Maxs[i]-this->Mins[i]) == 0.0 )
{
x[1] = 0.5 * (this->YMax - this->YMin);
}
else
{
x[1] = this->YMin +
((v - this->Mins[i]) / (this->Maxs[i] - this->Mins[i])) *
(this->YMax - this->YMin);
}
ptId = pts->InsertNextPoint(x);
lines->InsertCellPoint(ptId);
}
}
}
else //row
{
lines->Allocate(lines->EstimateSize(numColumns,numRows));
for (j=0; j<numColumns; j++)
{
lines->InsertNextCell(numColumns);
for (i=0; i<numRows; i++)
{
x[0] = this->Xs[i];
v = field->GetComponent(i,j);
if ( (this->Maxs[i]-this->Mins[i]) == 0.0 )
{
x[1] = 0.5 * (this->YMax - this->YMin);
}
else
{
x[1] = this->YMin +
((v - this->Mins[i]) / (this->Maxs[i] - this->Mins[i])) *
(this->YMax - this->YMin);
}
ptId = pts->InsertNextPoint(x);
lines->InsertCellPoint(ptId);
}
}
}
pts->Delete();
lines->Delete();
return 1;
}
//----------------------------------------------------------------------------
// Release any graphics resources that are being consumed by this actor.
// The parameter window could be used to determine which graphic
// resources to release.
void vtkParallelCoordinatesActor::ReleaseGraphicsResources(vtkWindow *win)
{
this->TitleActor->ReleaseGraphicsResources(win);
for (int i=0; this->Axes && i<this->N; i++)
{
this->Axes[i]->ReleaseGraphicsResources(win);
}
}
//----------------------------------------------------------------------------
void vtkParallelCoordinatesActor::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
if (this->TitleTextProperty)
{
os << indent << "Title Text Property:\n";
this->TitleTextProperty->PrintSelf(os,indent.GetNextIndent());
}
else
{
os << indent << "Title Text Property: (none)\n";
}
if (this->LabelTextProperty)
{
os << indent << "Label Text Property:\n";
this->LabelTextProperty->PrintSelf(os,indent.GetNextIndent());
}
else
{
os << indent << "Label Text Property: (none)\n";
}
os << indent << "Input: " << this->Input << "\n";
os << indent << "Position2 Coordinate: "
<< this->Position2Coordinate << "\n";
this->Position2Coordinate->PrintSelf(os, indent.GetNextIndent());
os << indent << "Title: " << (this->Title ? this->Title : "(none)") << "\n";
os << indent << "Number Of Independent Variables: " << this->N << "\n";
os << indent << "Independent Variables: ";
if ( this->IndependentVariables == VTK_IV_COLUMN )
{
os << "Columns\n";
}
else
{
os << "Rows\n";
}
os << indent << "Number Of Labels: " << this->NumberOfLabels << "\n";
os << indent << "Label Format: " << this->LabelFormat << "\n";
}
|