Distance to Offset Distance Lisp Routine?
Distance to Offset Distance Lisp Routine?
(OP)
Does anyone have or know of a lisp routine that will take the distance measured in the "Distance" command and use this number as the default offset distance the next time I use the offset command?
Thanks
Thanks





RE: Distance to Offset Distance Lisp Routine?
(defun c:d2off ()
(setvar "offsetdist" (getvar "distance"))
)