From fc97e064bc0aaa5b4e5902046f4138984b175a4b Mon Sep 17 00:00:00 2001 From: zjsy521 <116447324@qq.com> Date: Tue, 3 Aug 2021 16:34:55 +0000 Subject: [PATCH] =?UTF-8?q?update=2004=5F=E7=94=A8=E6=88=B7=E4=BA=A4?= =?UTF-8?q?=E4=BA=92/04=5F=E7=94=A8=E6=88=B7=E4=BA=A4=E4=BA=92/Class1.cs.?= =?UTF-8?q?=20=E6=AD=A4=E8=A1=8C=E5=A4=9A=E4=BD=99=EF=BC=8C=E9=9C=80?= =?UTF-8?q?=E8=A6=81=E6=B3=A8=E9=87=8A=E6=8E=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Class1.cs" | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git "a/04_\347\224\250\346\210\267\344\272\244\344\272\222/04_\347\224\250\346\210\267\344\272\244\344\272\222/Class1.cs" "b/04_\347\224\250\346\210\267\344\272\244\344\272\222/04_\347\224\250\346\210\267\344\272\244\344\272\222/Class1.cs" index 06e421a..7687947 100644 --- "a/04_\347\224\250\346\210\267\344\272\244\344\272\222/04_\347\224\250\346\210\267\344\272\244\344\272\222/Class1.cs" +++ "b/04_\347\224\250\346\210\267\344\272\244\344\272\222/04_\347\224\250\346\210\267\344\272\244\344\272\222/Class1.cs" @@ -1,4 +1,4 @@ -using Autodesk.AutoCAD.ApplicationServices; +using Autodesk.AutoCAD.ApplicationServices; using Autodesk.AutoCAD.EditorInput; using Autodesk.AutoCAD.Geometry; using Autodesk.AutoCAD.Runtime; @@ -98,7 +98,7 @@ namespace _04_用户交互 { ppr = ed.GetPoint("\n 指定下一点或[放弃(U)]", pointPre, new string[] { "U" }); } - ppr = ed.GetPoint("\n 指定下一点或 [放弃(U)]", pointPre, new string[] { "U" }); + //ppr = ed.GetPoint("\n 指定下一点或 [放弃(U)]", pointPre, new string[] { "U" });此行需要注释掉 Point3d pointNext; // 用于接收下一点坐标 if (ppr.Status == PromptStatus.Cancel) return; if (ppr.Status == PromptStatus.None) return; -- Gitee