SSamuel Bodintemp
ce4535f4创建于 2020年4月5日历史提交
export function pointApproximates(p0: paper.Point, p1: paper.Point) {
  return Math.abs(p0.x - p1.x) < 0.001 && Math.abs(p0.y - p1.y) < 0.001;
}