- 博客(17)
- 收藏
- 关注
转载 AutoCAD 中的系统变量与环境变量
AutoCAD 中的系统变量与环境变量 (来自官方帮助文件)About System and Environment Variables (AutoLISP)(1)系统变量AutoLISP applications can inspect and change the value of AutoCAD system variables with the getvar...
2015-09-03 18:39:00
1668
转载 SVN switch 用法详解 (ZZ)
SVN switch 用法详解 (ZZ) http://www.cnblogs.com/dabaopku/archive/2011/05/21/2052820.html确实,以前不会用switch之前,就像文中提到的那样,先把trunk merge进branch,提交branch,再把branch merge进trunk,是很安全,很少会产生什么冲突,但是有点太麻烦了。...
2015-07-20 14:17:00
224
转载 Autolisp程序“版本库”构建(初稿)
由于AutoCAD自带的IDE并不支持类似与其他语言的“import”语句 。当程序复杂到一定程度或由多个开发人员进行协作,“版本库”的重要程度也不断提高。目前我自己在做一个采矿专业的辅助设计软件(AutoCAD二次开发),软件有一些公用函数会被多个子功能的调用。多个子功能的编写和维护可能同时进行,此过程中可能对公用函数进行修改。国外的牛人也遇到了这个情况,人家写入个软件实现了类...
2015-07-20 13:58:00
209
转载 SVN 分支/合并/切换
本文无条理性,仅作自我参考。花费了两个半下午,走马观花的看了一下说明文档,SVN设计的太复杂,对我这样的,不在一个集体的的业余开发者,要理解起来真是太难了。。。。分支Make branches as often as you want.(这是SVN官方说明中的一句话)There's nothing special about this working cop...
2015-07-20 12:33:00
409
转载 让博客园支持Autolisp语法着色
由于Autolisp是小众语言,博客的代码插件并不支持Autolisp语法着色。但博客支持html语法。原理:将着色效果转化为html 代码,效果如下:;;------------------=={ Get Files Dialog }==------------------;;;; ...
2015-07-19 20:00:00
205
转载 AutoCAD 二次开发语言的选择
因为某些功能的原因,一部份VBA的用户最终选择了NET,又因为某些功能的原因,一部份NET的用户最终选择了C++。最终这部份业余用户走上了专业的二次开发之路,而脱离了原来的专业。 来自 一个CAD群叫 “arx-阿华”的作为新手,作为业余,基础一般,精力有限,其实语言的选择是个不容忽视的问题。目前我的定位是 飞思CAD,软件初...
2015-01-29 13:46:00
1610
转载 SuperMemo UX 添加笔记 Ctrl+H
在舍得的教程中看到 添加笔记存在Notes文件夹中,且text字段的内容可以复制出来。目前我还未验证:转载于:https://www.cnblogs.com/InspiringMind/p/4246081.html...
2015-01-24 16:40:00
154
转载 SuperMemo概念初识(摘录)
作者:舍得 首发:舍得@学习力博客1、复习进度查看 窗口的主体是一本日历,上图中日期上的三位数表示当天的复习量。如8月13日的“275”表示当天有275个页面(一个页面就是一个记忆项)需要复习。 对于新人来说,主要看“下次复习”这项数据即可;对于老手来说,可以再看看“间隔”、“评分”等参数;再专业一些的童鞋,可以分析一下A因子和U因子。...
2015-01-20 11:20:00
631
转载 win7安装office2013过程中出现 office 15 click-to-run extensibility component提示
win7安装office2013安装报错"office 15 click-to-run extensibility component"怎么解决 Delete those... HKEY_CLASSES_ROOT\Installer\Products\00005102C80000000000000000F01FEC HKEY_CLASSES_ROOT\Installer...
2014-12-22 11:08:00
774
转载 Automactically loading LSP files
AutCAD automatically loads four Autolisp files.Acad2010.lsp and acad2010doc.lsp are reserved for Autocad use.Acad.lsp and acaddoc.lsp are reserved for you, the user.The Acad.lsp...
2014-11-27 10:47:00
193
转载 The Apostrophe and the Quote Function ‘和引用函数 未翻译完)
copyright :http://lee-mac.com/quote.html The Apostrophe (单引号) The apostrophe or single-quote character marks an expression or symbol as a literal expression(Returns an expression without evaluati...
2014-07-30 16:02:00
196
转载 Mapcar & Lambda(待增加明经部分讲解及范例最后的解释)
Further Reading:http://lee-mac.com/mapcarlambda.html 官方说明: (mapcar <function> <list-1> <list-2> ... <list-n>) 将作为本函数参数的一个或多个表的各个元素提供给指定函数进行求值,并将由求值结果构成的表返回。 list1... list...
2014-07-30 13:47:00
486
转载 Loading Programs Automatically 自动加载程序
by http://lee-mac.com/autoloading.html#autoload Method 1:Using the Startup Suite (加载/卸载应用程序) 快捷键:ap Method 2: Using the ACADDOC.lsp Upon opening a drawing or starting a new drawing, Auto...
2014-07-30 11:31:00
143
转载 Error Handling 错误处理
This tutorials aims to teach you how to create an error handler for your programs to deal with the clean-up operation when something in the code goes wrong. by:http://lee-mac.com/errorhandling....
2014-07-29 14:28:00
421
转载 Prompting with a Default Option 创建默认提示
Introduction This tutorial centers around various ways to prompt for user input with a default option available upon the user pressing Enter. By http://lee-mac.com/promptwithdefault.html Note...
2014-07-29 13:14:00
198
转载 An Introduction to Script Writing
占位带修改转载于:https://www.cnblogs.com/InspiringMind/p/3875098.html
2014-07-29 11:22:00
129
转载 Localising Variables 局部变量
This tutorial will give a brief overview of the defun function and moreover explain why localising variables is a good habit to get into. By http://lee-mac.com/localising.html (defun <symbo...
2014-07-29 11:07:00
162
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人