Trudy Posted December 14, 2020 Posted December 14, 2020 (edited) Hello, i want to ask for help with creating closed polygon from Grid lines with lisp. Regards Trudy Edited September 7, 2022 by Trudy Quote
marko_ribar Posted December 14, 2020 Posted December 14, 2020 (edited) I'd recommend that you create single one, set variable (setq el (entlast)) and then do ARRAYCLASSIC - Rectangular option... Finally you iterate through newly created entities and change numbers in texts : (setq k 1) (while (setq el (entnext el)) (if (wcmatch (cdr (assoc 0 (entget el))) "*TEXT") (entupd (cdr (assoc -1 (entmod (subst (cons 1 (strcat (substr (cdr (assoc 1 (entget el))) 1 (1- (strlen (cdr (assoc 1 (entget el)))))) (itoa (setq k (1+ k))))) (assoc 1 (entget el)) (entget el)))))) ) ) Edited December 16, 2020 by marko_ribar Quote
Stefan BMR Posted December 14, 2020 Posted December 14, 2020 For Boxes only, you can try Enclosed Polylines Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.