Eng-Tips is the largest forum for Engineering Professionals on the Internet.

Members share and learn making Eng-Tips Forums the best source of engineering information on the Internet!

  • Congratulations dmapguru on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Distance to Offset Distance Lisp Routine? 1

Status
Not open for further replies.

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
 
OK, short 'n sweet:

(defun c:d2off ()
(setvar "offsetdist" (getvar "distance"))
)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top