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
|
/*=========================================================================
Program: Visualization Toolkit
Module: TestSpiderPlotActor.cxx
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.
=========================================================================*/
// This tests the spider plot capabilities in VTK.
#include "vtkSpiderPlotActor.h"
#include "vtkFloatArray.h"
#include "vtkDataObject.h"
#include "vtkFieldData.h"
#include "vtkMath.h"
#include "vtkTextProperty.h"
#include "vtkRenderer.h"
#include "vtkRenderWindow.h"
#include "vtkRenderWindowInteractor.h"
#include "vtkPolyData.h"
#include "vtkPoints.h"
#include "vtkIdList.h"
#include "vtkProperty2D.h"
#include "vtkLegendBoxActor.h"
#include "vtkTestUtilities.h"
#include "vtkRegressionTestImage.h"
//----------------------------------------------------------------------------
int TestSpiderPlotActor( int argc, char * argv [] )
{
int numTuples = 12;
vtkFloatArray *bitter = vtkFloatArray::New();
bitter->SetNumberOfTuples(numTuples);
vtkFloatArray *crispy = vtkFloatArray::New();
crispy->SetNumberOfTuples(numTuples);
vtkFloatArray *crunchy = vtkFloatArray::New();
crunchy->SetNumberOfTuples(numTuples);
vtkFloatArray *salty = vtkFloatArray::New();
salty->SetNumberOfTuples(numTuples);
vtkFloatArray *oily = vtkFloatArray::New();
oily->SetNumberOfTuples(numTuples);
for (int i=0; i<numTuples; i++)
{
bitter->SetTuple1(i, vtkMath::Random(1,10));
crispy->SetTuple1(i, vtkMath::Random(-1,1));
crunchy->SetTuple1(i, vtkMath::Random(1,100));
salty->SetTuple1(i, vtkMath::Random(0,10));
oily->SetTuple1(i, vtkMath::Random(5,25));
}
vtkDataObject *dobj = vtkDataObject::New();
dobj->GetFieldData()->AddArray(bitter);
dobj->GetFieldData()->AddArray(crispy);
dobj->GetFieldData()->AddArray(crunchy);
dobj->GetFieldData()->AddArray(salty);
dobj->GetFieldData()->AddArray(oily);
vtkSpiderPlotActor *actor = vtkSpiderPlotActor::New();
actor->SetInputData(dobj);
actor->SetTitle("Spider Plot");
actor->SetIndependentVariablesToColumns();
actor->GetPositionCoordinate()->SetValue(0.05,0.1,0.0);
actor->GetPosition2Coordinate()->SetValue(0.95,0.85,0.0);
actor->GetProperty()->SetColor(1,0,0);
actor->SetAxisLabel(0,"Bitter");
actor->SetAxisRange(0,1,10);
actor->SetAxisLabel(1,"Crispy");
actor->SetAxisRange(1,-1,1);
actor->SetAxisLabel(2,"Crunchy");
actor->SetAxisRange(2,1,100);
actor->SetAxisLabel(3,"Salty");
actor->SetAxisRange(3,0,10);
actor->SetAxisLabel(4,"Oily");
actor->SetAxisRange(4,5,25);
actor->GetLegendActor()->SetNumberOfEntries(numTuples);
for (int i=0; i<numTuples; i++)
{
double red=vtkMath::Random(0,1);
double green=vtkMath::Random(0,1);
double blue=vtkMath::Random(0,1);
actor->SetPlotColor(i,red,green,blue);
}
actor->LegendVisibilityOn();
// Set text colors (same as actor for backward compat with test)
actor->GetTitleTextProperty()->SetColor(1,1,0);
actor->GetLabelTextProperty()->SetColor(1,0,0);
// Create the RenderWindow, Renderer and both Actors
vtkRenderer *ren1 = vtkRenderer::New();
vtkRenderWindow *renWin = vtkRenderWindow::New();
renWin->AddRenderer(ren1);
vtkRenderWindowInteractor *iren = vtkRenderWindowInteractor::New();
iren->SetRenderWindow(renWin);
ren1->AddActor(actor);
ren1->SetBackground(0,0,0);
renWin->SetSize(500,200);
// render the image
iren->Initialize();
renWin->Render();
int retVal = vtkRegressionTestImage( renWin );
if ( retVal == vtkRegressionTester::DO_INTERACTOR)
{
iren->Start();
}
bitter->Delete();
crispy->Delete();
crunchy->Delete();
salty->Delete();
oily->Delete();
dobj->Delete();
actor->Delete();
ren1->Delete();
renWin->Delete();
iren->Delete();
return !retVal;
}
|