From e2244d08353f797d00bf6bb22812de4a95dd2c63 Mon Sep 17 00:00:00 2001 From: ChenX Date: Wed, 1 Mar 2023 14:57:19 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BC=80=E5=8F=91:=E4=BF=AE=E5=A4=8D=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/DatabaseServices/Contour.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DatabaseServices/Contour.ts b/src/DatabaseServices/Contour.ts index ff7bb22b8..1d8f064d1 100644 --- a/src/DatabaseServices/Contour.ts +++ b/src/DatabaseServices/Contour.ts @@ -576,7 +576,7 @@ export class Contour * @param smallCurve 传入的这个曲线不能比本轮廓还大(这个需要自己优化?) * @returns */ - ContainerCurve(smallCurve: Polyline | Circle | Curve, isAreaCheckd = false, ipts: any[] = undefined): boolean + ContainerCurve(smallCurve: Polyline | Circle | Curve, isAreaCheckd = false, ipts: IntersectResult[] = undefined): boolean { if (!isAreaCheckd && this.Area < smallCurve.Area) return false;