/*========================================================================= Program: Visualization Toolkit Module: TestGPURayCastVolumeRotation.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 covers additive method. // This test volume renders a synthetic dataset with unsigned char values, // with the additive method. #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int TestGPURayCastVolumeRotation(int argc, char* argv[]) { 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); delete[] volumeFile; volumeMapper->SetInputConnection(reader->GetOutputPort()); volumeMapper->SetSampleDistance(0.01); // Add outline filter vtkNew outlineFilter; outlineFilter->SetInputConnection(reader->GetOutputPort()); outlineMapper->SetInputConnection(outlineFilter->GetOutputPort()); outlineActor->SetMapper(outlineMapper); volumeMapper->GetInput()->GetScalarRange(scalarRange); volumeMapper->SetBlendModeToComposite(); volumeMapper->SetAutoAdjustSampleDistances(1); vtkNew renWin; renWin->SetMultiSamples(0); vtkNew ren; renWin->AddRenderer(ren); ren->SetBackground(0.2, 0.2, 0.5); renWin->SetSize(400, 400); vtkNew iren; iren->SetRenderWindow(renWin); vtkNew scalarOpacity; scalarOpacity->AddPoint(50, 0.0); scalarOpacity->AddPoint(75, 0.1); vtkNew volumeProperty; volumeProperty->ShadeOff(); volumeProperty->SetInterpolationType(VTK_LINEAR_INTERPOLATION); volumeProperty->SetScalarOpacity(scalarOpacity); vtkSmartPointer colorTransferFunction = volumeProperty->GetRGBTransferFunction(0); colorTransferFunction->RemoveAllPoints(); colorTransferFunction->AddRGBPoint(scalarRange[0], 0.0, 0.8, 0.1); colorTransferFunction->AddRGBPoint(scalarRange[1], 0.0, 0.8, 0.1); vtkNew volume; volume->SetMapper(volumeMapper); volume->SetProperty(volumeProperty); /// Rotate the volume for testing purposes volume->RotateY(45.0); outlineActor->RotateY(45.0); volume->RotateZ(-90.0); outlineActor->RotateZ(-90.0); volume->RotateX(90.0); outlineActor->RotateX(90.0); ren->AddViewProp(volume); ren->AddActor(outlineActor); renWin->Render(); ren->ResetCamera(); iren->Initialize(); iren->SetDesiredUpdateRate(30.0); int retVal = vtkRegressionTestImage(renWin); if (retVal == vtkRegressionTester::DO_INTERACTOR) { iren->Start(); } return !retVal; }