明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
12
返回列表 发新帖
楼主: 天天问

也发一个画示坡线的lsp【源码】

[复制链接]
 楼主| 发表于 2022-8-14 18:33:49 | 显示全部楼层
czb203 发表于 2022-8-14 10:28
类似这样的,能够延伸到坡脚的线

这种样式的示坡线我倒是用不着,你可以自己在源码的基础上改改,就能实现了。不过看CASS的这种示坡线,出现了交叉的时候要截断,情况比我发的这个要复杂多了。
发表于 2022-8-28 09:16:14 | 显示全部楼层
czb203 发表于 2022-8-14 10:28
类似这样的,能够延伸到坡脚的线

画示坡线,短线长可默认,画在那一侧按光标位置

(defun c:spx ( / str ob p1 p2 p3 fx)

(while(setq ob(entsel “\n选择线:”))

(setq p1(cadr ob) ob(car ob))

(if(wcmatch (cdr(assoc 0(entget ob)))”*POLYLINE,LINE,SPLINE,CIRCLE,ARC,ELLIPSE”)

(progn

(setq ob(vlax-ename->vla-object ob))

(setq p1(vlax-curve-getclosestpointto ob p1))

(princ “\n光标位为示坡线方向”)

(setq str “\n指定短线长”)

(if spxdist (setq str(strcat str “<“(rtos spxdist) “>:”)))

(while(cond

((and (setq p3(getpoint p1 str))(> (setq d(distance p1 p3))0))

(setq spxdist d)nil

)

(spxdist(setq p3(polar p1(angle p1(cadr(grread ‘(2 13)))) spxdist))nil)

;获取当前光标坐标(cadr(grread ‘(2 13)))或(cadr(grread T 15 0))

(t)

));可使用默认短线长度spxdist

(setq p2(vlax-curve-getPointAtDist ob (+ spxdist(vlax-curve-getDistAtPoint ob p1))))

(setq fx(- (angle p2 p3)(angle p1 p2)))

(shipoxian ob spxdist (not(or(and(< fx 0)(> fx (- 0 pi)))(> fx pi))))

)

)

)

)
发表于 2022-9-1 10:11:50 | 显示全部楼层
本帖最后由 song宋_74729 于 2022-9-1 10:21 编辑

源码分享,取之明经,用之明经

本帖子中包含更多资源

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

x
发表于 2022-9-6 09:58:42 | 显示全部楼层
命令是多少啊?加载进去没有看到命令
 楼主| 发表于 2022-9-7 11:20:29 | 显示全部楼层
101345 发表于 2022-9-6 09:58
命令是多少啊?加载进去没有看到命令

分2个命令执行,spx1和spx2
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-25 08:28 , Processed in 0.149374 second(s), 17 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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