Shuxia Ning
2025-01-07 5f51a2fe3461e1f88e75b0b6959719d25f657ef3
WinFrmUI/Yw.WinFrmUI.Hydro.Q3d.Core/MapView/Core/Geometry_2d/Vector2d.cs
@@ -6,7 +6,7 @@
namespace Hydro.Model
{
    public class Vector2d
    {
        double _x, _y;
@@ -24,7 +24,7 @@
        public Point ToPoint()
        {
            return new Point( _x,  _y);
            return new Point(_x, _y);
        }
        public double X
@@ -64,5 +64,5 @@
            return new Vector2d(v1.X - v2.X, v1.Y - v2.Y);
        }
    }
}