明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
123
返回列表 发新帖
楼主: ajunseo

[提问] 求写一个矩形画叉插件

[复制链接]
发表于 2021-6-20 21:56:03 | 显示全部楼层
本帖最后由 xj6019 于 2021-6-20 22:00 编辑
烟盒迷唇 发表于 2021-6-20 19:44
组码6的线型你没加载吧

请教个问题  entmake画腰孔(也就是长孔)怎么写代码,一个entmake可以实现吗,圆弧部分怎么处理呀
发表于 2021-6-21 08:47:15 | 显示全部楼层
xj6019 发表于 2021-6-20 21:56
请教个问题  entmake画腰孔(也就是长孔)怎么写代码,一个entmake可以实现吗,圆弧部分怎么处理呀

腰孔不懂是什么,不清楚
发表于 2021-6-21 13:46:46 | 显示全部楼层
xj6019 发表于 2021-6-20 18:20
(DEFUN C:CRE (/ OLD_LAY SS I S ENT PT LEN)
(vl-load-com)
(setq old_lay (getvar "clayer"))

謝謝分享!
很不錯的工具
使用正常IN CAD2016
发表于 2021-9-13 14:08:04 | 显示全部楼层
(command "RECTANGLE" "non" (setq p1 (getpoint "\n点1:")) "non" (setq p2 (getcorner p1 "\n点2:")) "line" "non" p1 "non" p2 "" "line" "non" (list (car p1) (cadr p2)) "non" (list (car p2) (cadr p1)) "")
回复 支持 2 反对 0

使用道具 举报

发表于 2022-6-4 18:23:26 | 显示全部楼层
chenbh2 发表于 2021-9-13 14:08
(command "RECTANGLE" "non" (setq p1 (getpoint "\n点1:")) "non" (setq p2 (getcorner p1 "\n点2:")) "li ...

顶起顶起,谢谢大神分享实用的代码
发表于 2022-6-5 09:15:00 | 显示全部楼层
点击矩形内部任意一点即重新绘制矩形与对角线

本帖子中包含更多资源

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

x
发表于 2023-2-14 22:46:51 | 显示全部楼层
感谢楼主,正在寻找这个
发表于 2023-2-15 17:00:42 | 显示全部楼层
感謝樓主,正在尋找這個
发表于 2023-2-17 09:08:14 | 显示全部楼层
加了默认图层,

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;木枋;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun c:mf(/ a b c)
(setq a (getpoint "\n点选矩形内部的一点: "))
(command "boundary" a "")
(setq a (ssget "L")
a (ssname a 0)
a (entget a)
b (assoc 10 a)
)
(while b
(setq c (cons (cdr b) c)
a (cdr (member b a))
b (assoc 10 a)
)
)
(setq old_lay (getvar "clayer"))
(if (not (tblsearch "layer" "PUB_HATCH"))
(command "._layer" "m" "PUB_MFHATCH" "c" "8" "" "lt" "DASH" "" "LW"
         "0.05" "" "")
                 )
(setvar "clayer" "PUB_MFHATCH")
(command "line" (nth 0 c) (nth 2 c) ""
"line" (nth 1 c) (nth 3 c) ""
)
(setvar "clayer" old_lay)
)
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-16 10:32 , Processed in 0.184729 second(s), 20 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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