明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
楼主: xyp1964

[讨论] 【e派】工具箱函数再揭秘及应用实例

    [复制链接]
 楼主| 发表于 2012-12-8 12:31:22 | 显示全部楼层
本帖最后由 xyp1964 于 2017-11-20 21:54 编辑

  1. ;; xyp-Line vl方式画线(点与点、点集与点、点与点集、点集与点集) (xyp-Line p1 p2)
  2. (defun xyp-Line        (p1 p2 / s0 pt pt1 pt2 i ss)
  3.   (setq s0 (entlast))
  4.   (cond
  5.     ;; 点集与点
  6.     ((and (= (type (car p1)) 'LIST)
  7.           (or (= (type (car p2)) 'REAL)
  8.               (= (type (car p2)) 'INT)
  9.           )
  10.      )
  11.      (mapcar '(lambda (x) (xyp-line x p2)) p1)
  12.      (setq ss (xyp-SSelEntnext s0))
  13.     )
  14.     ;; 点与点集
  15.     ((and (= (type (car p2)) 'LIST)
  16.           (or (= (type (car p1)) 'REAL)
  17.               (= (type (car p1)) 'INT)
  18.           )
  19.      )
  20.      (mapcar '(lambda (x) (xyp-line p1 x)) p2)
  21.      (setq ss (xyp-SSelEntnext s0))
  22.     )
  23.     ;; 点集与点集
  24.     ((and (= (type (car p1)) 'LIST)
  25.           (= (type (car p2)) 'LIST)
  26.           (= (length p1) (length p2))
  27.      )
  28.      (mapcar '(lambda (x y) (xyp-line x y)) p1 p2)
  29.      (setq ss (xyp-SSelEntnext s0))
  30.     )
  31.     ;; 点与点、
  32.     ((and (or (= (type (car p1)) 'REAL)
  33.               (= (type (car p1)) 'INT)
  34.           )
  35.           (or (= (type (car p2)) 'REAL)
  36.               (= (type (car p2)) 'INT)
  37.           )
  38.      )
  39.      (vla-addline
  40.        (vla-get-ModelSpace
  41.          (vla-get-ActiveDocument (vlax-get-acad-object))
  42.        )
  43.        (vlax-3D-point p1)
  44.        (vlax-3D-point p2)
  45.      )
  46.      (setq ss (entlast))
  47.     )
  48.   )
  49.   ss
  50. )

点评

缺少院长函数:xyp-SSelEntnext,还望院长不吝赐码  发表于 2013-3-18 14:55
发表于 2012-12-8 22:01:47 | 显示全部楼层
院長 最近在研究您的
xyp-Curve-Close
xyp-add-circle  

点评

请继续研究  发表于 2012-12-9 11:48
发表于 2012-12-18 08:18:15 | 显示全部楼层
院长的工具太牛X了。佩服ing.
发表于 2012-12-18 11:23:03 | 显示全部楼层
太多了,院长的高作还得慢慢消化
发表于 2012-12-18 11:31:23 | 显示全部楼层
喜欢,院长威武
发表于 2012-12-18 13:17:34 | 显示全部楼层
整合力太强大了。愉悦!
发表于 2012-12-24 09:01:09 | 显示全部楼层
院长,继续放出啊
发表于 2012-12-24 12:49:17 | 显示全部楼层
院长奉献了  火~~
发表于 2012-12-24 15:04:27 | 显示全部楼层
院长的工具箱函数,我慢慢看,慢慢消化……
发表于 2013-1-6 21:29:02 | 显示全部楼层
太强大!继续拼命支持!
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-16 09:24 , Processed in 0.216171 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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