This is the render method for the subvolume
| 1198 | |
| 1199 | // This is the render method for the subvolume |
| 1200 | void vtkFixedPointVolumeRayCastMapper::RenderSubVolume() |
| 1201 | { |
| 1202 | // Set the number of threads to use for ray casting, |
| 1203 | // then set the execution method and do it. |
| 1204 | this->InvokeEvent(vtkCommand::VolumeMapperRenderStartEvent, nullptr); |
| 1205 | this->Threader->SetSingleMethod(FixedPointVolumeRayCastMapper_CastRays, (void*)this); |
| 1206 | this->Threader->SingleMethodExecute(); |
| 1207 | this->InvokeEvent(vtkCommand::VolumeMapperRenderEndEvent, nullptr); |
| 1208 | } |
| 1209 | |
| 1210 | // This method displays the image that has been created |
| 1211 | void vtkFixedPointVolumeRayCastMapper::DisplayRenderedImage(vtkRenderer* ren, vtkVolume* vol) |
no test coverage detected