我有一个Array,Point我想把它变成一个Rectangle.
有4分。我将这些点绘制为 a Polygon,输出为 a Rectangle。
我怎样才能把这四个点画成一个Rectangle?
意思是,我想获得这些点的宽度和高度。
这是我的四点:
p1 :48.5, 196.5
p2 :997.5, 196.5
p2 :997.5, 692.5
p2 :48.5, 692.5
所以我想要这样的东西:
RectangleF rec = new RectangleF(x, y, width, hight);
我的x和y是p1.x,p1.y
如何从这些点获得宽度和高度?
RectangleF rec = new RectangleF(p1.x, p1.y, width, hight);
阿晨1998
相关分类