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
|
/*=========================================================================
Program: Visualization Toolkit
Module: TestGenericCutter.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 example demonstrates how to implement a vtkGenericDataSet
// (here vtkBridgeDataSet) and to use vtkGenericDataSetTessellator filter on
// it.
//
// The command line arguments are:
// -I => run in interactive mode; unless this is used, the program will
// not allow interaction and exit
// -D <path> => path to the data; the data should be in <path>/Data/
#include "vtkActor.h"
#include "vtkDebugLeaks.h"
#include "vtkPointData.h"
#include "vtkProperty.h"
#include "vtkTestUtilities.h"
#include "vtkRegressionTestImage.h"
#include "vtkRenderer.h"
#include "vtkRenderWindow.h"
#include "vtkRenderWindowInteractor.h"
#include "vtkUnstructuredGrid.h"
#include "vtkXMLUnstructuredGridReader.h"
#include "vtkBridgeDataSet.h"
#include "vtkGenericCutter.h"
#include "vtkGenericCellTessellator.h"
#include "vtkGenericSubdivisionErrorMetric.h"
#include <cassert>
#include "vtkLookupTable.h"
#include "vtkDataSetMapper.h"
#include "vtkPolyData.h"
#include "vtkPlane.h"
#include "vtkGeometricErrorMetric.h"
#include "vtkAttributesErrorMetric.h"
#include "vtkSimpleCellTessellator.h"
int TestGenericCutter(int argc, char* argv[])
{
// Standard rendering classes
vtkRenderer *renderer = vtkRenderer::New();
vtkRenderWindow *renWin = vtkRenderWindow::New();
renWin->AddRenderer(renderer);
vtkRenderWindowInteractor *iren = vtkRenderWindowInteractor::New();
iren->SetRenderWindow(renWin);
// Load the mesh geometry and data from a file
vtkXMLUnstructuredGridReader *reader = vtkXMLUnstructuredGridReader::New();
char *cfname = vtkTestUtilities::ExpandDataFileName(argc, argv, "Data/quadraticTetra01.vtu");
// char *cfname = vtkTestUtilities::ExpandDataFileName(argc, argv, "Data/quadHexa01.vtu");
reader->SetFileName( cfname );
delete[] cfname;
// Force reading
reader->Update();
// Initialize the bridge
vtkBridgeDataSet *ds=vtkBridgeDataSet::New();
ds->SetDataSet( reader->GetOutput() );
reader->Delete();
// Set the error metric thresholds:
// 1. for the geometric error metric
vtkGeometricErrorMetric *geometricError=vtkGeometricErrorMetric::New();
geometricError->SetRelativeGeometricTolerance(0.1,ds);
ds->GetTessellator()->GetErrorMetrics()->AddItem(geometricError);
geometricError->Delete();
// 2. for the attribute error metric
vtkAttributesErrorMetric *attributesError=vtkAttributesErrorMetric::New();
attributesError->SetAttributeTolerance(0.01);
ds->GetTessellator()->GetErrorMetrics()->AddItem(attributesError);
attributesError->Delete();
cout<<"input unstructured grid: "<<ds<<endl;
static_cast<vtkSimpleCellTessellator *>(ds->GetTessellator())->SetMaxSubdivisionLevel(10);
vtkIndent indent;
ds->PrintSelf(cout,indent);
// Create the filter
vtkPlane *implicitPlane = vtkPlane::New();
implicitPlane->SetOrigin(0.5, 0, 0); // 0, -1, 0
implicitPlane->SetNormal(1, 1, 1);
vtkGenericCutter *cutter = vtkGenericCutter::New();
cutter->SetInputData(ds);
cutter->SetCutFunction(implicitPlane);
implicitPlane->Delete();
cutter->SetValue( 0,0.5 );
cutter->GenerateCutScalarsOn();
cutter->Update(); //So that we can call GetRange() on the scalars
assert(cutter->GetOutput()!=0);
// This creates a blue to red lut.
vtkLookupTable *lut = vtkLookupTable::New();
lut->SetHueRange (0.667, 0.0);
vtkDataSetMapper *mapper = vtkDataSetMapper::New();
mapper->SetLookupTable(lut);
mapper->SetInputConnection( cutter->GetOutputPort() );
if(cutter->GetOutput()->GetPointData()!=0)
{
if(cutter->GetOutput()->GetPointData()->GetScalars()!=0)
{
mapper->SetScalarRange( cutter->GetOutput()->GetPointData()->
GetScalars()->GetRange());
}
}
vtkActor *actor = vtkActor::New();
actor->SetMapper(mapper);
renderer->AddActor(actor);
// Standard testing code.
renderer->SetBackground(0.5,0.5,0.5);
renWin->SetSize(300,300);
renWin->Render();
int retVal = vtkRegressionTestImage( renWin );
if ( retVal == vtkRegressionTester::DO_INTERACTOR)
{
iren->Start();
}
// Cleanup
renderer->Delete();
renWin->Delete();
iren->Delete();
mapper->Delete();
actor->Delete();
cutter->Delete();
ds->Delete();
lut->Delete();
return !retVal;
}
|