mirror of
https://github.com/nunocoracao/blowfish.git
synced 2026-01-30 16:31:52 +01:00
10 lines
108 B
TypeScript
10 lines
108 B
TypeScript
export function intersectLine(
|
|
p1: any,
|
|
p2: any,
|
|
q1: any,
|
|
q2: any
|
|
): {
|
|
x: number;
|
|
y: number;
|
|
};
|