明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1493|回复: 2

获取面域属性信息问题

[复制链接]
发表于 2007-10-11 22:40:00 | 显示全部楼层 |阅读模式

是这样的:在cad中,可以用massprop命令查询选定面域或实体的特性属性,比如面积,惯性矩等等,现在情况是:我在vba中选定了一个面域,并用sendcommand方法调用massprop命令查询该面域的属性,请问怎么样获取这些属性信息?这些信息在后续的编程中还需要用到,请高手多多指教!!!

发表于 2007-10-12 07:28:00 | 显示全部楼层

用sendcommand方法调用massprop命令查询该面域的属性? 为什么要那样做?

Sub Ch4_CreateRegion()
    ' Define an array to hold the
    ' boundaries of the region.
    Dim curves(0 To 0) As AcadCircle

    ' Create a circle to become a
    ' boundary for the region.
    Dim center(0 To 2) As Double
    Dim radius As Double
    center(0) = 2
    center(1) = 2
    center(2) = 0
    radius = 5#
    Set curves(0) = ThisDrawing.ModelSpace.AddCircle _
                    (center, radius)

    ' Create the region
    Dim regionObj As Variant
    regionObj = ThisDrawing.ModelSpace.AddRegion(curves)
    MsgBox regionObj(0).ProductOfInertia

    ZoomAll
End Sub

发表于 2011-11-21 16:48:47 | 显示全部楼层
这个是圆周率呀
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-25 19:25 , Processed in 0.166513 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表