编辑acad.lsp
参考偶的缩写命令:
 - [FONT=courier new]
- ;;;*------------------ 画线缩写 -------------------------------------
- (defun c:l () (command "line")) ;线
- (defun c:lc () (command "line" "cen")) ;圆心
- (defun c:lcc () (command "line" "cen" pause "cen")) ;圆心-圆心
- (defun c:lce () (command "line" "cen" pause "end")) ;圆心-端点
- (defun c:lci () (command "line" "cen" pause "int")) ;圆心-交点
- (defun c:lcm () (command "line" "cen" pause "mid")) ;圆心-中点
- (defun c:lcp () (command "line" "cen" pause "per")) ;圆心-垂点
- (defun c:le () (command "line" "end")) ;端点
- (defun c:lec () (command "line" "end" pause "cen")) ;端点-圆心
- (defun c:lee () (command "line" "end" pause "end")) ;端点-端点
- (defun c:lei () (command "line" "end" pause "int")) ;端点-交点
- (defun c:lem () (command "line" "end" pause "mid")) ;端点-中点
- (defun C:lep () (command "line" "end" pause "per")) ;端点-垂点
- (defun c:lic () (command "line" "int" pause "cen")) ;交点-圆心
- (defun c:lie () (command "line" "int" pause "end")) ;交点-端点
- (defun c:lii () (command "line" "int" pause "int")) ;交点-交点
- (defun c:lim () (command "line" "int" pause "mid")) ;交点-中点
- (defun c:lip () (command "line" "int" pause "per")) ;交点-垂点
- (defun c:lm () (command "line" "mid")) ;线中点
- (defun c:lmc () (command "line" "mid" pause "cen")) ;中点-圆心
- (defun c:lme () (command "line" "mid" pause "end")) ;中点-端点
- (defun c:lmi () (command "line" "mid" pause "int")) ;中点-交点
- (defun c:lmm () (command "line" "mid" pause "mid")) ;中点-中点
- (defun c:lmp () (command "line" "mid" pause "per")) ;中点-垂点
- (defun c:ln () (command "line" "int")) ;交点
- (defun c:lr () (command "line" "@"))
- (defun c:ltt () (command "line" "tan" pause "tan")) ;切点-切点
- ;;;*-----------------------------------------------------------------
- [/FONT]
|