明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1334|回复: 6

关于块的坐标的问题

[复制链接]
发表于 2006-6-23 23:28:00 | 显示全部楼层 |阅读模式

在一张图上,有若干块,如何获得这些块中心点所在的坐标?不能用鼠标选取的方式,只能直接用程序得到某个块的坐标??

发表于 2006-6-24 08:22:00 | 显示全部楼层
用鼠标只能获得块插入点,属性点的坐标,要获得中心点的坐标只能用程序处理了,除非把插入点定为中心点就不用了
发表于 2006-6-24 08:37:00 | 显示全部楼层
GetBoundingBox
 楼主| 发表于 2006-6-24 17:37:00 | 显示全部楼层

那如何获得块大致在什么地方呢?大致坐标就可以了

 楼主| 发表于 2006-6-25 15:49:00 | 显示全部楼层
我想能不能在块中设置一个点,然后在外面通过程序获得这个点的坐标,那大致也是这个块的坐标了,可我怎么搞坐标都是0,0,大家帮我想想怎么处理这个问题。有没有其他什么好办法。
发表于 2006-6-26 01:14:00 | 显示全部楼层
<RE class=Code>Sub Example_GetBoundingBox()
    ' This example creates a line in model space. It then finds the
    ' bounding box for the line and displays the corners of the box.
   
    Dim startPoint(0 To 2) As Double
    Dim endPoint(0 To 2) As Double
    Dim lineObj As AcadLine

    ' Create the Line object in model space
    startPoint(0) = 2#: startPoint(1) = 2#: startPoint(2) = 0#
    endPoint(0) = 4#: endPoint(1) = 4#: endPoint(2) = 0#
    Set lineObj = ThisDrawing.ModelSpace.AddLine(startPoint, endPoint)
    ZoomAll
   
    Dim minExt As Variant
    Dim maxExt As Variant
   
    ' Return the bounding box for the line and return the minimum
    ' and maximum extents of the box in the minExt and maxExt variables.
    lineObj.GetBoundingBox minExt, maxExt
   
    ' Print the min and max extents
    MsgBox "The extents of the bounding box for the line are:" &amp; vbCrLf _
         &amp; "Min Extent: " &amp; minExt(0) &amp; "," &amp; minExt(1) &amp; "," &amp; minExt(2) _
         &amp; vbCrLf &amp; "Max Extent: " &amp; maxExt(0) &amp; "," &amp; maxExt(1) &amp; "," &amp; maxExt(2), vbInformation, "GetBoundingBox Example"
         
End Sub</PRE>
 楼主| 发表于 2006-6-26 21:22:00 | 显示全部楼层

我用insertpoint方法搞定了,谢谢了

您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-27 02:16 , Processed in 0.159058 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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