明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1489|回复: 6

[搬运]读文本画矩形

[复制链接]
发表于 2024-3-20 19:41:45 | 显示全部楼层 |阅读模式
本帖最后由 tigcat 于 2024-3-20 19:57 编辑

应该是可以读取文本,然后根据文本内容画矩形,搬运给新手坛友使用
原帖地址:https://forums.autodesk.com/t5/v ... gles/td-p/12629624#



(defun c:kilama (/ *error* string_to_list f file1 redak x y w h d dx dy p1 p2)        (defun *error* ()                (setvar 'cmdecho 1)                (close file1)        )        (defun string_to_list ( str del / pos )        (if (setq pos (vl-string-search del str))            (cons (substr str 1 pos) (string_to_list (substr str (+ pos 1 (strlen del))) del))            (list str)        )    )          (setvar 'cmdecho 0)        (setq f (getfiled "Open File" (getvar "dwgprefix") "txt" 2))        (setq file1 (open f "r"))        (while (setq redak (read-line file1))                (mapcar 'set '(x y w h d) (mapcar 'atof (string_to_list redak ",")))                (setq dx (* 0.5 w) dy (* 0.5 h))                (setq p1 (mapcar '- (list x y) (list dx dy)))                (setq p2 (mapcar '+ (list x y) (list dx dy)))                (command "_.rectangle" p1 p2)                (command "_.offset" d (entlast) (list x y) "")                )        (close file1)        (command "_.zoom" "e")        (setvar 'cmdecho 1)        (princ))


数据格式
x,y,width,height, thickness
x,y,宽度,高度,厚度

100,100,150,150,25
500,500,150,150,25
300,300,150,150,25
1000,1000,150,150,25
1200,1200,150,150,25

本帖子中包含更多资源

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

x

评分

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

查看全部评分

发表于 2024-3-21 10:54:27 | 显示全部楼层
感谢楼主分享,很好的代码,数据取值拓展空间很大,单个数据串连再分开读取,步骤清晰。
 楼主| 发表于 2024-3-21 12:43:09 | 显示全部楼层
对,虽然简单,但有函数可用,我们可以学习借鉴。遇到类似时可以自己改造
发表于 2024-3-21 14:46:18 | 显示全部楼层
感谢楼主,先收藏一下,得想想怎么才能用上
发表于 2024-3-26 08:21:37 | 显示全部楼层
感谢楼主分享,很好的代码,
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-25 04:44 , Processed in 0.158224 second(s), 25 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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