- (setq bg (entlast))
- (or key (setq key "Z"))
- (initget "X Z Y ")
- (setq key (getkword (strcat "\n镜像移动[上下镜像(X)/左右镜像(Z)/左右移动(Y)] <"key">:")))
- (cond
- ((= key "X")
- (command "mirror" bg "" "non" ....)
- )
- ((= key "Z")
- (command "mirror" bg "" "non" ....)
- )
- ((= key "Y")
- (command "_move" bg "" ....)
- )
- )
|