home *** CD-ROM | disk | FTP | other *** search
- (DEFUN C:STEXT (/ js pnt1 a b c d e )
- (GRAPHSCR)
- (setq js (getstring "Enter Left/Right/Center/Middle "))(terpri)
- (setq js (strcase js))
- (SETQ PNT1 (GETPOINT "Starting Point "))(terpri)
- (setq a (getdist pnt1 "Enter Height "))(terpri)
- (setq c (getdist pnt1 "Enter The Line Spacing "))(terpri)
- (setq b (getreal "Enter The Number Of Text Lines "))(terpri)
- (setq d "T")
- (while d
- (setq e (getstring 1 "Enter Text: "))
- (setq b (- b 1))
- (if (= b 0) (setq d nil))
- (if (= js "L") (command "text" pnt1 a "0" e)
- (command "text" js pnt1 a "0" e))
- (setq pnt1 (list (car pnt1)(-(cadr pnt1) c)))
- )
- )