明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
楼主: xyp1964

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

    [复制链接]
发表于 2023-12-6 15:04:52 | 显示全部楼层

此函数参数有BUG
(setq ss  (xyp-Ssdel sss x)
应为
(setq ss  (xyp-Ssdel sss code x)

QQ:81444317

评分

参与人数 1明经币 +1 收起 理由
xyp1964 + 1 赞一个!

查看全部评分

发表于 2023-12-6 15:48:40 | 显示全部楼层
本帖最后由 韩飞翔 于 2023-12-6 15:54 编辑

略微修改,改成了选择集折返排序
;;测试代码
(defun c:tt ()
  (xyp-MkLaCo "箭头线" 1)
  (setq n 1)
  (setq mode (getint "\n排序类型号"))
  (while (setq ss (ssget))
    (setq
                        ptn (mapcar '(lambda (x) (xyp-9Pt x 5)) (xyp-Sort-sszf8s ss mode 5))
                        s1  (xyp-Pline ptn nil)
                        ptn (reverse ptn)
                        pt1 (car ptn)
                        pt2 (cadr ptn)
                        ang (angle pt1 pt2)
                        pt3 (polar pt1 ang 600)
                        pt4 (polar pt3 (+ ang (* 0.5 pi)) 150)
                        pt5 (polar pt3 (- ang (* 0.5 pi)) 150)
                        s2  (xyp-Pline (list pt4 pt5 pt1) t)
                        n   (1+ n)
    )
  )
  (princ)
)
;;参数:ss:选择集
;;参数:mode:排序方式
;;参数:n:9pt的位置点
;;返回:折返排序后的选择集表
(defun xyp-Sort-sszf8s (ss mode n / x y aaa)
  (defun aaa (ss fun1 fun2 n / x y x1 x2 y1 y2)
    (vl-sort (xyp-ss2list ss)
                        '(lambda (x y)
                                 (setq
                                         x         (trans (xyp-9pt x n) 0 1)
                                         y         (trans (xyp-9pt y n) 0 1)
                                         x1 (car x)
                                         x2 (car y)
                                         y1 (cadr x)
                                         y2 (cadr y)
                                 )
                                 (cond
                                         ((and (= x1 x2) (= y1 y2) (> (caddr x) (caddr y))) T)
                                         ((and (= y1 y2) (fun1 x1 x2)) T)
                                         ((fun2 y1 y2) T)
                                 )
                         )
    )
  )
  (defun bbb (ss fun1 fun2 n / x y x1 x2 y1 y2)
    (vl-sort (xyp-ss2list ss)
                        '(lambda (x y)
                                 (setq
                                         x         (trans (xyp-9pt x n) 0 1)
                                         y         (trans (xyp-9pt y n) 0 1)
                                         x1 (car x)
                                         x2 (car y)
                                         y1 (cadr x)
                                         y2 (cadr y)
                                 )
                                 (cond ((and (= x1 x2) (= y1 y2) (> (caddr x) (caddr y))) T)
                                         ((and (= x1 x2) (fun1 y1 y2)) T)
                                         ((fun2 x1 x2) T)
                                 )
                         )
    )
  )
  (cond
                ((= mode 1) (aaa ss < > n))
                ((= mode 2) (aaa ss > > n))
                ((= mode 3) (aaa ss < < n))
                ((= mode 4) (aaa ss > < n))
                ((= mode 5) (bbb ss > < n))
                ((= mode 6) (bbb ss < < n))
                ((= mode 7) (bbb ss > > n))
                ((= mode 8) (bbb ss < > n))
  )
)

评分

参与人数 1明经币 +1 收起 理由
xyp1964 + 1 赞一个!

查看全部评分

发表于 2023-12-6 16:49:00 | 显示全部楼层
学习一下,标记
 楼主| 发表于 2024-1-2 14:13:53 | 显示全部楼层
  1. (defun xyp-StrSubst (new old string / ll tx n)
  2.   "xyp-StrSubst 在字符串中进行字符串替换 (xyp-StrSubst new old string)"
  3.   ;; (xyp-StrSubst "abc" "3" "1234321") → "12abc4abc21"
  4.   (if (> (setq ll (strlen old)) 0)
  5.     (progn
  6.       (setq tx "")
  7.       (while (setq n (vl-string-search old string))
  8.         (setq tx (strcat tx (substr string 1 n) new)
  9.               string (substr string (+ n ll 1))
  10.         )
  11.       )
  12.       (strcat tx string)
  13.     )
  14.     string
  15.   )
  16. )
 楼主| 发表于 2024-1-3 12:51:30 | 显示全部楼层
本帖最后由 xyp1964 于 2024-1-24 22:29 编辑

  1. (defun xyp-StrSpr (str sub / lst n)
  2.   "以指定分解符分解字符串"
  3.   (if (/= sub "")
  4.     (progn
  5.       (while (setq n (vl-string-search sub str))
  6.         (setq lst (cons (substr str 1 n) lst)
  7.               str (substr str (+ n (strlen sub) 1))
  8.         )
  9.       )
  10.       (vl-remove "" (reverse (cons str lst)))
  11.     )
  12.   )
  13. )



  1. (defun xyp-PtInPtn (p pt / aa)
  2.   "xyp-PtInPtn 点在点集内 (xyp-PtInPtn pt点 ptn点集)"
  3.   (setq aa (mapcar '(lambda (x y) (rem (- (angle x p) (angle y p)) pi))  pt (cons (last pt) pt))
  4.         aa (abs (apply '+ aa))
  5.   )
  6.   (equal aa pi 1e-8)
  7. )


发表于 2024-1-3 22:35:18 来自手机 | 显示全部楼层
谢谢院长分享。
 楼主| 发表于 2024-2-7 11:27:53 | 显示全部楼层
本帖最后由 xyp1964 于 2024-2-7 13:30 编辑

神奇的数学世界






本帖子中包含更多资源

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

x
发表于 2024-2-7 14:14:09 | 显示全部楼层
xyp1964 发表于 2024-2-7 11:27
神奇的数学世界

院长威武,12年了还在跟帖
 楼主| 发表于 2024-2-7 19:47:34 | 显示全部楼层
bonny 发表于 2024-2-7 14:14
院长威武,12年了还在跟帖

一个生肖轮回……
 楼主| 发表于 2024-4-29 18:51:29 | 显示全部楼层
  1. (defun xyp-get-Color (s1 / co)
  2.   "xyp-get-Color 取得物体的颜色(含随层)(xyp-get-Color s1实体)"
  3.   (if (setq co (xyp-DXF 62 s1))co(cdr (assoc 62 (tblsearch "layer" (xyp-DXF 8 s1)))))
  4. )
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

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

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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