dist command

can u help? is there any way to stay in the dist command without have to keep presseing enter Thanks in advance!!!

Reply to
x x
Loading thread data ...

Sure, use this little lisp. It will undefine the dist command then create a new one.

Jeff

(command "undefine" "dist") (defun c:dist (/ pt1 pt2) (while (setq pt1 (getpoint "Specify first point: ")) (if (setq pt2 (getpoint pt1 " Specify second point: ")) (command "._dist" pt1 pt2) ) ) (princ) )

Reply to
Jeff

at the command prompt type MULTIPLE press ENTER then type DIST and press ENTER /RL "x x" skrev i meddelandet news:FYrlc.8165$ snipped-for-privacy@pathologist.blueyonder.net...

Reply to
Roland Lykvist

PolyTech Forum website is not affiliated with any of the manufacturers or service providers discussed here. All logos and trade names are the property of their respective owners.