明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 2051|回复: 4

各位大哥谁能告诉我如何在lisp中得到多义线的各顶点坐标.

[复制链接]
发表于 2003-7-1 14:32:00 | 显示全部楼层 |阅读模式
发表于 2003-7-1 14:41:00 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
发表于 2003-7-1 14:49:00 | 显示全部楼层
http://bbs.mjtd.com/forum.php?mod=viewthread&tid=437
发表于 2003-7-1 17:16:00 | 显示全部楼层

回复

;;
      ;; Get all nodes of the LWPolyline, Polyline.
      ;;
      (defun GetListOfPline (EntityName / SSE_Pline N newEntityName)
        (setq SSE_Pline (entget EntityName))
        (setq LastList nil)
        (if (= (cdr (assoc 0 SSE_Pline)) "LWPOLYLINE")
            (progn
              (setq LastList (LIST (LIST 0 0)))
              (setq N 0)
              (while (/= (nth N SSE_Pline) nil)
                     (if (= (car (nth N SSE_Pline)) 10)
                         (setq LastList (append LastList (list (list (cadr (nth N SSE_Pline)) (caddr (nth N SSE_Pline)) )) ))
                     )
                     (setq N (+ N 1))
              )
              (setq LastList (cdr LastList))
            )
        )
        (if (= (cdr (ASSOC 0 SSE_Pline)) "OLYLINE")
            (PROGN
              (setq LastList (list (list 0 0)))
              (setq newEntityName (entnext EntityName))
              (while (= (cdr (assoc 0 (entget newEntityName))) "VERTEX")
                     (setq LastList (append LastList (list (list (cadr (assoc 10 (entget newEntityName))) (caddr (assoc 10 (entget newEntityName))) ))))
                     (setq newEntityName (entnext newEntityName))
              )
              (setq LastList (cdr LastList))
            )
        )
        (setq LastList LastList)
      );_defun
 楼主| 发表于 2003-7-1 17:42:00 | 显示全部楼层
谢谢各位,再会!!!!!!!!!!!!!
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-26 18:38 , Processed in 0.173151 second(s), 26 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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