建筑资料下载 | 房地产资料 | 建筑资料库二 建筑课堂 | 建筑考试 | 装修设计 | 注册 | 登录 | 会员中心 网站地图

首页

当前位置:牛气建筑网建筑课堂工程资料工程测量计算区域面积[VB/VBA函数]» 正文

计算区域面积[VB/VBA函数]

[08-22 13:58:42]   来源:http://www.67jzw.com  工程测量   阅读:8541

概要:'Points格式:'Points(0):X'Points(1):Y'Points(2):H'...公式:Area=1/2*(x1*y2-x2*y1+x2*y3-x3*y2+... ...+xn*x1-x1*yn)Private Function Area(Points() As Double) As Double '计算Points()区域面积 Dim L As Long L = UBound(Points) - 3 Dim T1 As Long Dim S As Double S = 0 For T1 = 0 To L Step 3 S = S + Points(T1) * Points(T1 + 4) - Points(T1 + 1) * Points(T1 + 3) Next T1 S = S + Points(T1) * Points(1) - Points(T1 + 1) * Points(0) Area = Abs(S / 2)

计算区域面积[VB/VBA函数],标签:工程测量规范,工程测量技术,http://www.67jzw.com
'Points格式:
'Points(0):X
'Points(1):Y
'Points(2):H
'...公式:Area=1/2*(x1*y2-x2*y1+x2*y3-x3*y2+... ...+xn*x1-x1*yn)
Private Function Area(Points() As Double) As Double      '计算Points()区域面积
    Dim L As Long
    L = UBound(Points) - 3
    Dim T1 As Long
    Dim S As Double
    S = 0
    For T1 = 0 To L Step 3
        S = S + Points(T1) * Points(T1 + 4) - Points(T1 + 1) * Points(T1 + 3)
    Next T1
    S = S + Points(T1) * Points(1) - Points(T1 + 1) * Points(0)
    Area = Abs(S / 2)
End Function
Tag:工程测量工程测量规范,工程测量技术工程资料 - 工程测量

上一篇:利用真数(级数展开)公式和垂距趋近正反算曲线程序(for 4850P)

《计算区域面积[VB/VBA函数]》相关文章

会员评论


联系本站 | 免责声明 | 下载帮助 | 建筑资料下载 | 房地产资料 | 建筑资料库二 | 建筑课堂 | 建筑考试 | 装修设计 | 网站地图 | 收藏本站

Copyright 牛气建筑网 版权所有 All Right Reserved.

1 2 3 4 5 6 7 8 9 10