kevinchuxu

Results 1 comments of kevinchuxu

浮点数精度计算导致的修改packages/core/src/algorithm/edge.ts文件中isInSegment可以临时解决 ``` /* 判断一个点是否在线段中 入参点:point, 线段起终点,start,end, 返回值: 在线段中true,否则false */ export const isInSegment = (point, start, end) => { const { x, y } = point; const { x: startX, y:...