/**
* Compute the length of a segment defined by two points.
* @paramp1 - First point.
* @paramp2 - Second point.
* @returns Length of the segment.
*/exportfunctiongetLineLength(p1, p2) {
returnMath.hypot(p1.column - p2.column, p1.row - p2.row);
}
//# sourceMappingURL=lines.js.map