求教,用鼠标作出不规则多边形后,如何求面积?谢谢!(100分)

  • 主题发起人 主题发起人 amoycat
  • 开始时间 开始时间
A

amoycat

Unregistered / Unconfirmed
GUEST, unregistred user!
多谢指教。
 
数数有多少个点在该区域内吧
 
来自:yysun 时间:00-1-12 10:33:25 ID:174638
[答]
const MaxPointNum = 65535;
type
PXY = ^TXY;
TXY = record // 点的数据结构
x, y: single;
end;
XYArray = array[0..MaxPointNum] of TXY;
PXYArray = ^XYArray; // 线/面的数据结构

// 积分方法求多边形/面状图形的面积
// 多边形坐标在 xys 中,点数在 nn 中
function AreaOfPolygon(xys: PXYArray; nn: integer):single;
var ii:integer;
ss: single;
begin
ss := 0;
for ii := 0 to nn-2 do
ss := ss + (xys^[ii].y+xys^[ii+1].y) * (xys^[ii].x-xys^[ii+1].x) / 2;
result := abs(ss);
end;



你以“面积”收索一下……
 
接受答案了.
 
能否用C++Builder代码,我不懂Dephli
 

Similar threads

D
回复
0
查看
824
DelphiTeacher的专栏
D
S
回复
0
查看
816
SUNSTONE的Delphi笔记
S
S
回复
0
查看
737
SUNSTONE的Delphi笔记
S
S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
后退
顶部