line-length.d.ts 147 B

12345
  1. import type { Point } from '../../types';
  2. /**
  3. * 计算线段长度
  4. */
  5. export declare function lineLen([x1, y1]: Point, [x2, y2]: Point): number;