728x90
(defun c:A4 ( / osm scl inp)
(setvar "cmdecho" 0)
(setq osm (getvar "osmode"))
;(setvar "osmode" 0)
(setq scl (getreal "\n Scale : "))
(setq inp (getpoint "\n Insert point : "))
(command "-insert" "c:/경로/A4.dwg" "s" scl "r" "0" inp)
(setvar "osmode" osm)
(princ)
) ;;end of defun
;---------------------------------------
(defun c:A3 ( / osm scl inp)
(setvar "cmdecho" 0)
(setq osm (getvar "osmode"))
;(setvar "osmode" 0)
(setq scl (getreal "\n Scale : "))
(setq inp (getpoint "\n Insert point : "))
(command "-insert" "c:/경로/A3.dwg" "s" scl "r" "0" inp)
(setvar "osmode" osm)
(princ)
) ;;end of defun
728x90
'캐드리습' 카테고리의 다른 글
치수 레이어를 자동으로 바꿔주는 리습 (0) | 2023.02.14 |
---|---|
DLC 포함 리습 샘플 (0) | 2023.02.14 |
빠른인쇄 윈도우범위 A4 리습 (0) | 2023.02.14 |
레이어 변경 리습 (없으면 만들기) (0) | 2023.02.14 |
제자리 블럭 만들기 이름지정 가능 리습 (0) | 2023.02.14 |