Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 327x 80x 247x 246x 1x | import type vtkActor from '@kitware/vtk.js/Rendering/Core/Actor';
import type vtkImageSlice from '@kitware/vtk.js/Rendering/Core/ImageSlice';
import type vtkVolume from '@kitware/vtk.js/Rendering/Core/Volume';
/**
* Checks if a vtk Actor is an image actor (vtkVolume or vtkImageSlice) otherwise returns false.
*
* @param actor - actor
* @returns A boolean value.
*/
export default function isImageActor(
actor: vtkActor | vtkVolume | vtkImageSlice
): boolean {
if (actor.isA('vtkVolume')) {
return true;
}
if (actor.isA('vtkImageSlice')) {
return true;
}
return false;
}
|