UNPKG

@lunit/insight-viewer

Version:

Based on the cornerstone library, it provides several components for handling Dicom images

10 lines (9 loc) 286 B
import type { Point } from '../../../types'; /** * Determine if ab and cd intersect * @param a line 1 start * @param b line 1 end * @param c line 2 start * @param d line 2 end */ export declare function getIsIntersection(a: Point, b: Point, c: Point, d: Point): boolean;