;;;Creates viewport just inside NAVFAC standard ANSI-F size sheet border. ;;;Includes a notch around our revision block and title block. ;;; ;;;Expects the border to be scaled 1:1 with origin at 0.0,0.0 per standard. ;;; ;;;> Author: Henry C. Francis ;;;> 425 N. Ashe St. ;;;> Southern Pines, NC 28387 ;;;> http://paracadd.com ;;;> All rights reserved. ;;; ;;;> COPYRIGHT: 2-6-2006 ;;;> EDITED: 02-06-2006 ;;; (defun c:ansifvp () (command) (setq old_ansifvp_osmode (getvar"osmode")) (setvar"osmode"0) (command "pspace") (command ".-layer" "m" "c-vi027nplt" "") (command ".mview" "p" "1.3,0.55" "28.95,0.55" "28.95,2.6" "30.95,2.6" "30.95,4.55" "39.45,4.55" "39.45,26.45" "32.45,26.45" "32.425,27.45" "1.3,27.45" "") (setvar "osmode" old_ansifvp_osmode) (princ) )