home *** CD-ROM | disk | FTP | other *** search
- ;Fill Wall
- ;
- ; ********Patrick J. McKee, author********
- ; ****Copyright 1992, Power Key tm****
- ;
- (DEFUN C:fw()
- (setq oer *error* *error* err2)
- (if (= fa1 nil)(setq fa1 4.5))
- (setq dfop1 fa1)
- (initget (+ 2 4))
- (setq fa1(getdist(strcat "Enter wall size <" (rtos fa1) ">: ")))
- (if (= fa1 nil)(setq fa1 dfop1))
- (setq fa2(/ fa1 2))
- (princ "\nSelect wall line to fill")
- (command"offset" fa2 pause PAUSE "" "chprop" "l" "" "la" "ewf" "" "pedit" "l" "Y" "w" fa1 "")
- (princ))