明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 2079|回复: 2

有一根垂直线和很多水平线,水平线均与垂线T形相交,如何获得交点信息?

[复制链接]
发表于 2003-3-20 21:51:00 | 显示全部楼层 |阅读模式
发表于 2003-3-21 10:35:00 | 显示全部楼层

这是在xdcad上的一个求交点的函数。

Autolisp本身的函数有(inters p1 p2 p3 p4 [onseg])


;;;VxGetInters - 返回两个物体的所有交点
; -- Function VxGetInters
; Arguments [Typ]:
; Fst = First object [VLA-OBJECT]
; Nxt = Second object [VLA-OBJECT]
; Mde = Intersection mode [INT]
; Constants:
; - acExtendNone Does 不延伸
; - acExtendThisEntity 延伸第一
; - acExtendOtherEntity 延伸第二
; - acExtendBoth 延伸两者
; Return [Typ]:
; > list of points '((1.0 1.0 0.0)... [LIST]
; > Nil if no intersection found
;
(defun VxGetInters (Fst Nxt Mde / IntLst PntLst);;;实体交点
  (setq IntLst (vlax-invoke Fst "IntersectWith" Nxt Mde))
  (cond
    (IntLst
      (repeat (/ (length IntLst) 3)
        (setq PntLst
                (cons
                  (list(car IntLst)(cadr IntLst)(caddr IntLst))
                  PntLst
                )
              IntLst (cdddr IntLst))
      )
      (reverse PntLst)
    )
    (T nil)
  )
)
发表于 2003-3-21 10:45:00 | 显示全部楼层

水平线的一个端点不就是交点吗?只要判断一下端点的横坐标就可知道交点了

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

本版积分规则

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

GMT+8, 2024-11-26 07:44 , Processed in 0.158598 second(s), 26 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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