找回密码
 立即注册

QQ登录

只需一步,快速开始

扫一扫,访问微社区

查看: 705|回复: 1

[多段线] Change a specific coordinate in a LWPOLYLINE in Lisp

[复制链接]

已领礼包: 40个

财富等级: 招财进宝

发表于 2021-1-7 19:25:41 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?立即注册

×
The LWPOLYLINE (or light weight polyline) will typically have multiple coordinates and it is not easy to modify these vertices. What is the easiest way to access specific coordinates in a LWPOLYLINE and modify it?

The following lisp code demonstrates an easy way. The lisp code snippet increments the Y values of the LWPOLYLINE vertices by 5 units:
  1. (defun Test (e ed / i vt)
  2.   (setq i 0)
  3.   (repeat (length ed)
  4.     (if        (= (car (nth i ed)) 10)                ;if item is a vertex
  5.       (progn
  6.         (setq vt (cdr (nth i ed)))        ; get vertex values
  7.         (setq X (car vt))                ; get the x value
  8.         (setq Y (cadr vt))                ; get the y value
  9.         (setq Y (+ 5 Y))                ; increment the Y value by 5 units
  10.                                         ; replace the old y value with the new y value
  11.         (setq vt (subst Y (nth 1 vt) vt))
  12.                                         ; update the entity definition with new vertex information
  13.         (setq ed (subst (cons 10 vt) (nth i ed) ed))
  14.         (entmod ed)                        ; update the drawing
  15.       )                                        ;progn
  16.     )                                        ;if
  17.     (setq i (1+ i))
  18.   )                                        ;repeat
  19. )                                        ;Test

  20. (defun C:MyTest        (/ e ed)
  21.   (setq        e  (car (entsel))
  22.         ed (entget e)
  23.   )
  24.   (if (= (cdr (assoc 0 ed)) "LWPOLYLINE")
  25.     (test e ed)
  26.   )                                        ;if
  27. )                                        ;C:MyTest


论坛插件加载方法
发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;
如果你在论坛求助问题,并且已经从坛友或者管理的回复中解决了问题,请把帖子标题加上【已解决】;
如何回报帮助你解决问题的坛友,一个好办法就是给对方加【D豆】,加分不会扣除自己的积分,做一个热心并受欢迎的人!

已领礼包: 604个

财富等级: 财运亨通

发表于 2021-1-11 21:25:59 | 显示全部楼层
多段线组码分成三部分,就好处理了
论坛插件加载方法
发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;
如果你在论坛求助问题,并且已经从坛友或者管理的回复中解决了问题,请把帖子标题加上【已解决】;
如何回报帮助你解决问题的坛友,一个好办法就是给对方加【D豆】,加分不会扣除自己的积分,做一个热心并受欢迎的人!
回复 支持 反对

使用道具 举报

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

本版积分规则

QQ|申请友链|Archiver|手机版|小黑屋|辽公网安备|晓东CAD家园 ( 辽ICP备15016793号 )

GMT+8, 2024-4-29 05:07 , Processed in 0.358594 second(s), 25 queries , Gzip On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

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