All files / packages/core/src/utilities isImageActor.ts

100% Statements 5/5
100% Branches 4/4
100% Functions 1/1
100% Lines 5/5

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                          532x 281x     251x 250x     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;
}