/*========================================================================= 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 checks if direct ospray volume mapper intermixes with // surface geometry in the scene. #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include VTK_MODULE_INIT(vtkRenderingRayTracing); int TestOSPRayVolumeRendererCrop(int argc, char* argv[]) { double scalarRange[2]; vtkNew dssActor; vtkNew dssMapper; vtkNew volumeMapper; vtkNew reader; const char* volumeFile = vtkTestUtilities::ExpandDataFileName(argc, argv, "Data/vase_1comp.vti"); reader->SetFileName(volumeFile); volumeMapper->SetInputConnection(reader->GetOutputPort()); double planes[6] = { 0.0, 57.0, 0.0, 100.0, 0.0, 74.0 }; volumeMapper->SetCroppingRegionPlanes(planes); volumeMapper->CroppingOn(); reader->Update(); volumeMapper->GetInput()->GetScalarRange(scalarRange); 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); ren->AddViewProp(volume); ren->AddActor(dssActor); renWin->Render(); ren->ResetCamera(); iren->Initialize(); iren->SetDesiredUpdateRate(30.0); int retVal = vtkRegressionTestImageThreshold(renWin, 50.0); if (retVal == vtkRegressionTester::DO_INTERACTOR) { iren->Start(); } return !retVal; }