 - (defun c:tt ()
- (setq ukw (UKWORD 1 "1 2 3" "1-Line/2-Net/3-Solid" ukw))
- (if (setq ss (ssget))
- (cond ((= ukw "1") (command "hatch" "line" 10 45 ss ""))
- ((= ukw "2") (command "hatch" "net" 30 45 ss ""))
- ((= ukw "3") (command "hatch" "solid" ss ""))
- )
- )
- (princ)
- )
|