Nov 15, 2005 #1 epongra2 Geotechnical Joined Apr 1, 2003 Messages 56 Location US 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
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
Nov 15, 2005 1 #2 CarlB Civil/Environmental Joined Jul 11, 2001 Messages 1,197 Location US OK, short 'n sweet: (defun c:d2off () (setvar "offsetdist" (getvar "distance")) ) Upvote 0 Downvote