;;;Creates viewport just inside our standard ANSI-D size sheet border. ;;;Includes a notch around our revision 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:ansidvp () (command) (setq old_ansidvp_osmode (getvar"osmode")) (setvar"osmode"0) (command "pspace") (command ".-layer" "m" "c-vi027nplt" "") (command ".mview" "p" "1.98,0.62" "31.3383,0.62" "31.3383,20.3314" "27.2342,20.3314" "27.2342,21.38" "1.98,21.38" "") (setvar "osmode" old_ansidvp_osmode) (princ) )