From dfe7e1653f8309e23e4c314cd58ac4ff7ce49dbc Mon Sep 17 00:00:00 2001 From: duheng <2286773002@qq.com> Date: 星期五, 28 三月 2025 14:50:47 +0800 Subject: [PATCH] Merge branch 'master' of http://47.103.154.90:83/r/HStation/XHS.V1.0 --- WinFrmUI/Yw.WinFrmUI.Hydro.Q3d.Core/MapView/Common/MathSolver.cs | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/WinFrmUI/Yw.WinFrmUI.Hydro.Q3d.Core/MapView/Common/MathSolver.cs b/WinFrmUI/Yw.WinFrmUI.Hydro.Q3d.Core/MapView/Common/MathSolver.cs index ac4030f..4292668 100644 --- a/WinFrmUI/Yw.WinFrmUI.Hydro.Q3d.Core/MapView/Common/MathSolver.cs +++ b/WinFrmUI/Yw.WinFrmUI.Hydro.Q3d.Core/MapView/Common/MathSolver.cs @@ -6,12 +6,12 @@ using System.Text; using System.Threading.Tasks; -namespace Yw.WinFrmUI.Q3D +namespace Yw.WinFrmUI.Q3d { public class MathSolver { static double ErrNum = -1; - public static List<double> Solve(double a,double b,double c) + public static List<double> Solve(double a, double b, double c) { // 姹傝В浜屾鏂圭▼ ax^2 + bx + c = 0 double delta = b * b - 4 * a * c; @@ -27,7 +27,7 @@ return null; } } - public static List<double> Solve(double a,double b,double c,double d) + public static List<double> Solve(double a, double b, double c, double d) { double[] roots = null; roots = new double[3]; -- Gitblit v1.9.3