From 76f500519ad39983c557866b65c13f7bbc9ed475 Mon Sep 17 00:00:00 2001 From: ChenX Date: Wed, 16 Jun 2021 15:12:04 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96:=E5=BB=BA=E6=A8=A1=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E5=8A=A8=E4=BD=9C=E6=97=B6=E7=9A=84=E6=8F=90=E7=A4=BA?= =?UTF-8?q?=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/DatabaseServices/Template/TempateUtils.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/DatabaseServices/Template/TempateUtils.ts b/src/DatabaseServices/Template/TempateUtils.ts index fbaea611b..ee16085e1 100644 --- a/src/DatabaseServices/Template/TempateUtils.ts +++ b/src/DatabaseServices/Template/TempateUtils.ts @@ -463,7 +463,7 @@ export async function InitTempateBoardThicknessActions(template: TemplateRecord, //设置UCS app.Editor.UCSMatrix = br.OCS; - let ptRes = await app.Editor.GetPoint({ BasePoint: boardCenter, AllowDrawRubberBand: true }); + let ptRes = await app.Editor.GetPoint({ Msg: "请点击板厚变大时的拉伸方向(方向和板面平行时,板厚向两边均匀变大):", BasePoint: boardCenter, AllowDrawRubberBand: true }); if (ptRes.Status !== PromptStatus.OK) { @@ -709,7 +709,7 @@ export async function AddStretchAction(template: TemplateRecord, useScaleBox = f let p1Res = await app.Editor.GetPoint({}); if (p1Res.Status !== PromptStatus.OK) return; - let p2Res = await app.Editor.GetPoint({ Msg: "点击下一个点确认方向:", BasePoint: p1Res.Point }); + let p2Res = await app.Editor.GetPoint({ Msg: "请点击参数变大时的拉伸方向:", BasePoint: p1Res.Point }); if (p2Res.Status !== PromptStatus.OK) return; let direction = p2Res.Point.sub(p1Res.Point);