Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
hi'
I have this script,
(defun C:2 (/ dis)
(setvar 'cmdecho 1)
; Create the first Xline
(command "_.xline" "_ver" pause "")
(while (setq dis (getdist "\nDistance to next Xline: "))
(command "_.copy" "_last" "" "_non" "@" "_non" (polar (getvar 'lastpoint) 0 dis))
); while
(prin1)
)
I need to change it so it will create vertical Xlines and Place all Xlines on a designated layer (e.g., "layer1") without permanently altering the current layer setting.
thanks!!!
Solved! Go to Solution.