/*========================================================================= Program: Visualization Toolkit Module: TestGPURayCastVolumeOrientation.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 test volume renders a dataset that has a transform that // doesn't preserve orientation. #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int TestGPURayCastVolumeOrientation(int argc, char* argv[]) { cout << "CTEST_FULL_OUTPUT (Avoid ctest truncation of output)" << endl; double scalarRange[2]; vtkNew outlineActor; vtkNew outlineMapper; vtkNew volumeMapper; vtkNew reader; const char* volumeFile = vtkTestUtilities::ExpandDataFileName(argc, argv, "Data/vase_1comp.vti"); reader->SetFileName(volumeFile); volumeMapper->SetInputConnection(reader->GetOutputPort()); delete[] volumeFile; // Add outline filter vtkNew outlineFilter; outlineFilter->SetInputConnection(reader->GetOutputPort()); outlineMapper->SetInputConnection(outlineFilter->GetOutputPort()); outlineActor->SetMapper(outlineMapper); volumeMapper->GetInput()->GetScalarRange(scalarRange); volumeMapper->SetSampleDistance(0.1); volumeMapper->SetAutoAdjustSampleDistances(0); volumeMapper->SetBlendModeToComposite(); vtkNew renWin; renWin->SetMultiSamples(0); renWin->SetSize(400, 400); vtkNew iren; iren->SetRenderWindow(renWin); vtkNew style; iren->SetInteractorStyle(style); renWin->Render(); // make sure we have an OpenGL context. vtkNew ren; ren->SetBackground(0.2, 0.2, 0.5); renWin->AddRenderer(ren); vtkNew scalarOpacity; scalarOpacity->AddPoint(50, 0.0); scalarOpacity->AddPoint(75, 1.0); vtkNew volumeProperty; volumeProperty->ShadeOn(); volumeProperty->SetInterpolationType(VTK_LINEAR_INTERPOLATION); volumeProperty->SetScalarOpacity(scalarOpacity); vtkNew colorTransferFunction; colorTransferFunction->RemoveAllPoints(); colorTransferFunction->AddRGBPoint(scalarRange[0], 0.6, 0.4, 0.1); volumeProperty->SetColor(colorTransferFunction); vtkNew volume; volume->SetMapper(volumeMapper); volume->SetProperty(volumeProperty); // Set a transform that doesn't preserve orientation volume->SetScale(1.0, -1.0, 1.0); outlineActor->SetScale(1.0, -1.0, 1.0); ren->AddViewProp(volume); ren->AddActor(outlineActor); ren->ResetCamera(); int valid = volumeMapper->IsRenderSupported(renWin, volumeProperty); int retVal; if (valid) { renWin->Render(); iren->Initialize(); retVal = vtkRegressionTestImage(renWin); if (retVal == vtkRegressionTester::DO_INTERACTOR) { iren->Start(); } } else { retVal = vtkTesting::PASSED; cout << "Required extensions not supported" << endl; } return !retVal; }