如何使矩形的所有角正交

时间:2018-09-09 07:05:43

标签: c# geometry mathematical-optimization arcobjects orthogonal

我使用Arcobjects C#.Net在ArcGIS Desktop的顶部开发了一个应用程序。应用程序将通过连接四个已知坐标来创建一个矩形。我需要将所有四个角调整为正交(90度)。是否有任何数学方法可以从四个已知坐标实现这一目标?还是Arcobjects中有任何简单的方法可以做到这一点?

enter image description here

1 个答案:

答案 0 :(得分:3)

如果要确保角度为90度,则需要确保对角线长度相同。在您的示例中,这意味着长度(P1-P3)==长度(P2-P4)。

您可以选择:中点=(P1-P3)的中间。这是您的中心点。现在,使虚线平行于中点移动。现在,您已经调整了P2和P4,并越过了圆圈和虚线。

enter image description here

使用代码:

static void Main(string[] args)
    {
        Point P1 = new Point() { X = 2, Y = 1 };
        Point P2 = new Point() { X = 1.8, Y = 2.5 };
        Point P3 = new Point() { X = 6, Y = 4 };
        Point P4 = new Point() { X = 6.2, Y = 2.6 };
        double distX13 = P3.X - P1.X;
        double distY13 = P3.Y - P1.Y;
        Point midP = new Point() { X = P1.X + distX13 / 2, Y = P1.Y + distY13 / 2 };
        double lenght13 = Math.Sqrt(distX13 * distX13 + distY13 * distY13);

        double a24 = Math.Atan2(P4.Y - P2.Y, P4.X - P2.X);

        P2.X = midP.X - Math.Cos(a24) * lenght13 / 2;
        P2.Y = midP.Y - Math.Sin(a24) * lenght13 / 2;
        P4.X = midP.X + Math.Cos(a24) * lenght13 / 2;
        P4.Y = midP.Y + Math.Sin(a24) * lenght13 / 2;


    }