Test/node_modules/roughjs/bin/geometry.js
2026-04-09 22:54:00 +07:00

5 lines
164 B
JavaScript

export function lineLength(line) {
const p1 = line[0];
const p2 = line[1];
return Math.sqrt(Math.pow(p1[0] - p2[0], 2) + Math.pow(p1[1] - p2[1], 2));
}