From 8ffb7cc05910ca1546ecf057d0cabf3b22d304a3 Mon Sep 17 00:00:00 2001 From: yupeng_dyp Date: Wed, 6 Mar 2024 07:50:16 +0000 Subject: [PATCH] =?UTF-8?q?update=20src/CAD/IFox.CAD.Shared/ExtensionMetho?= =?UTF-8?q?d/Curve3dEx.cs.=20=E5=B0=86=20NurbCurve3d=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/Curve3dEx.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CAD/IFox.CAD.Shared/ExtensionMethod/Curve3dEx.cs b/src/CAD/IFox.CAD.Shared/ExtensionMethod/Curve3dEx.cs index f415ea3..b889bee 100644 --- a/src/CAD/IFox.CAD.Shared/ExtensionMethod/Curve3dEx.cs +++ b/src/CAD/IFox.CAD.Shared/ExtensionMethod/Curve3dEx.cs @@ -1,4 +1,4 @@ -using System.Runtime.CompilerServices; +using System.Runtime.CompilerServices; namespace IFoxCAD.Cad; @@ -522,7 +522,7 @@ public static Spline ToCurve(this NurbCurve3d nc3d) knots, ncdata.Weights, Tolerance.Global.EqualPoint, - ncdata.Knots.Tolerance); + ncdata.Knots.Tolerance) { Type = SplineType.FitPoints }; } return spl; } -- Gitee