Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
hello, i found this lisp in the forum. But it only works for a single Dimenion 1 time each.
How do apply to all selected, or select many dimenions.
Heres the lisp
(defun C:R2A (/ dim ddata); = Dimension: Linear to Aligned
(setq
dim (car (entsel "\nSelect Linear Dimension: "))
ddata (entget dim)
); setq
(command "_.dimaligned"
"_none" (cdr (assoc 13 ddata)) "_none" (cdr (assoc 14 ddata)) "_none" (cdr (assoc 11 ddata))
); command
(entdel dim)
(princ)
); defun
Solved! Go to Solution.