楼主: xyp1964
|
[讨论] 【e派】工具箱函数再揭秘及应用实例 |
发表于 2012-8-22 20:10:10
|
显示全部楼层
点评
xyp-sc是个全局变量,与图纸出图比例相关联
| ||
点评
(xyp-Sort-Plist (xyp-Sort ss 10 "x-min") 6) 这俩能提供下吗
| ||
点评
(defun xyp-SortListSub1 (lst sub / a n i new)
(if (setq a (member sub lst))
(progn
(setq b (member (- (length lst) sub 1) (reverse lst)))
(append a (reverse b))
)
)
)
| ||