Severian's picture
Upload 7464 files
c211499
raw
history blame contribute delete
108 Bytes
export function intersectLine(
p1: any,
p2: any,
q1: any,
q2: any
): {
x: number;
y: number;
};