From 31b3bb9cb8963c6130f808cf572e9933d994e35e Mon Sep 17 00:00:00 2001 From: yupeng_dyp Date: Thu, 1 Feb 2024 04:37:05 +0000 Subject: [PATCH] =?UTF-8?q?update=20src/CAD/IFox.CAD.Shared/ExtensionMetho?= =?UTF-8?q?d/Curve2dEx.cs.=20=E5=B0=86=20NurbCurve2d=20=E7=9A=84=20ToCurve?= =?UTF-8?q?=20=E6=89=A9=E5=B1=95=E6=96=B9=E6=B3=95=E8=BD=AC=E6=8D=A2?= =?UTF-8?q?=E4=B8=BA=E6=A0=B7=E6=9D=A1=E6=9B=B2=E7=BA=BF=E7=9A=84=E6=8E=A7?= =?UTF-8?q?=E5=88=B6=E7=B1=BB=E5=9E=8B=E7=94=B1=20=E6=8E=A7=E5=88=B6?= =?UTF-8?q?=E7=82=B9=20=E6=94=B9=E4=B8=BA=E9=BB=98=E8=AE=A4=E7=9A=84=20?= =?UTF-8?q?=E6=8B=9F=E5=90=88=EF=BC=8C=E4=BF=9D=E6=8C=81=E4=B8=8E=E7=94=A8?= =?UTF-8?q?CAD=E6=89=8B=E7=BB=98=E6=97=B6=E7=9A=84=E6=8E=A7=E5=88=B6?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E4=B8=80=E8=87=B4=EF=BC=8C=E4=BB=A5=E6=96=B9?= =?UTF-8?q?=E4=BE=BF=E5=90=8E=E7=BB=AD=E6=93=8D=E4=BD=9C=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: yupeng_dyp --- src/CAD/IFox.CAD.Shared/ExtensionMethod/Curve2dEx.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CAD/IFox.CAD.Shared/ExtensionMethod/Curve2dEx.cs b/src/CAD/IFox.CAD.Shared/ExtensionMethod/Curve2dEx.cs index 0b1fe75..cd18835 100644 --- a/src/CAD/IFox.CAD.Shared/ExtensionMethod/Curve2dEx.cs +++ b/src/CAD/IFox.CAD.Shared/ExtensionMethod/Curve2dEx.cs @@ -1,4 +1,4 @@ -namespace IFoxCAD.Cad; +namespace IFoxCAD.Cad; /// /// 二维解析类曲线转换为二维实体曲线扩展类 @@ -289,7 +289,7 @@ public static Spline ToCurve(this NurbCurve2d nc2d) knots, weights, 0, - nc2d.Knots.Tolerance); + nc2d.Knots.Tolerance) { Type = SplineType.FitPoints }; } #endregion NurbCurve2d -- Gitee