我觉得时间够,当然有点紧。
在普尔曼换登机牌时,提出,座位靠前一些。
在出发前,先查明西雅图机场的到达的Gate,查明西雅图机场Check in的位置,查明西雅图出发的Gate,情况熟悉,行动迅速一些。西雅图机场很大。先熟悉情况是必要的。
(defun c:abc() (setq ptx (getpoint "\n输入圆心点:")) (setq rr (getdist ptx "\n指定半径:")) (setvar "cmdecho" 0) (setq oldos (getvar "osmode")) (setvar "osmode" 0) (command "circle" ptx rr) (setq ang1 (/ pi 2) ang2 (/ pi 3)) (setq nn 0) (repeat 6 (setq pt1 (polar ptx (+ ang1 (* nn ang2)) rr)) (setq pt2 (polar ptx (+ ang1 (* (+ 2 nn) ang2)) rr)) (command "line" pt1 pt2 "") (if (zerop (rem nn 2)) (command "arc" pt1 ptx pt2) ) (setq nn (1+ nn)) ) (setvar "osmode" oldos) (setvar "cmdecho" 1) (princ))