From 2e8e85f65748ee5a5adf0dcda864aa4167cbf2ef Mon Sep 17 00:00:00 2001 From: duheng <2784771470@qq.com> Date: 星期三, 11 十二月 2024 10:32:35 +0800 Subject: [PATCH] 冲突 --- Service/HStation.Service.PhartRelation.Core/05-service/00-core/PerformCurveHelper.cs | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Service/HStation.Service.PhartRelation.Core/05-service/00-core/PerformCurveHelper.cs b/Service/HStation.Service.PhartRelation.Core/05-service/00-core/PerformCurveHelper.cs index 45fed5d..0773dc9 100644 --- a/Service/HStation.Service.PhartRelation.Core/05-service/00-core/PerformCurveHelper.cs +++ b/Service/HStation.Service.PhartRelation.Core/05-service/00-core/PerformCurveHelper.cs @@ -75,25 +75,25 @@ /// <summary> /// to 瀛樺偍瀛楃涓� /// </summary> - public static string ToDbString(eGraphType graphType, Yw.Pump.eFeatType featType, List<Yw.Geometry.Point2d> pts) + public static string ToDbString(eGraphType graphType, Yw.Ahart.eFeatType featType, List<Yw.Geometry.Point2d> pts) { var dbString = string.Empty; if (pts == null || pts.Count < 1) { return dbString; } - Yw.Pump.IFeatCurve featCurve = null; + Yw.Ahart.IFeatCurve featCurve = null; switch (featType) { - case Yw.Pump.eFeatType.Polynomial: + case Yw.Ahart.eFeatType.Polynomial: { - featCurve = new Yw.Pump.PolynomialCurve(pts); + featCurve = new Yw.Ahart.PolynomialCurve(pts); } break; - case Yw.Pump.eFeatType.Cubic: + case Yw.Ahart.eFeatType.Cubic: { - featCurve = new Yw.Pump.CubicCurve(pts); + featCurve = new Yw.Ahart.CubicCurve(pts); } break; -- Gitblit v1.9.3