;;;Creates plan viewport just inside NAVFAC standard ANSI-F size sheet border. ;;;Includes a notch around our revision block and title block. ;;;Creates profile viewport on grid indices over NAVFAC standard ANSI-F size sheet border ;;;and profile grid block. ;;; ;;;Expects the border and grid block 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:ansifppvp () (command) (setq old_ansifppvp_osmode (getvar"osmode")) (setvar"osmode"0) (command "pspace") (command ".-layer" "m" "c-vi027nplt" "") (command ".mview" "p" "1.3,13.55" "39.45,13.55" "39.45,26.45" "32.425,26.45" "32.425,27.45" "1.3,27.45" "") (command ".-layer" "m" "c-vi017nplt" "") (command ".mview" "p" "3.125,0.5" "28.125,0.5" "28.125,2.55" "30.125,2.55" "30.125,4.5" "37.125,4.5" "37.125,13.5" "3.125,13.5" "") (setvar "osmode" old_ansifppvp_osmode) (princ) )