地理信息公开课:地理信息与人类生活
今天发现了一个汤国安教授的科普类的地理信息的(GIS)公开课,觉得讲得非常好,既适合专业人士观看,也适合非专业人士进行一些简单的科普,我就把这个从网易公开课上搞出来,分享给大家。
课程介绍 阅读全文...
利用.htaccess绑定子域名到子目录(亲测万网可用)
利用.htaccess绑定域名到子目录,前提你的空间服务器必须支持apache的rewrite功能,只有这样才能使用.htaccess。如果你的空间是Linux服务器 一般默认都开启了的。
一、绑定域名:
登陆域名管理台(如DNSPod) 把需要绑定的域名 解析到你的空间;
登陆虚拟主机/空间管理台(如万网) 绑定域名到空间; 阅读全文...
AutoCAD .NET: The Simplest but Still Quite Functional Line Jig from DrawJig
AutoCAD .NET API provides two concrete Jig classes for us to jig different graphics in different circumstances, EntityJig and DrawJig. EntityJig is generally used to jig a specific entity as its name indicates and the DrawJig is to jig anything that has graphics to draw, which can be a single entity, a group of entities, or something that is not available natively in AutoCAD. 阅读全文...
AutoCAD.Net——浅谈JIG之EntityJig和DrawJig
转载自:http://www.cnblogs.com/wangyong/archive/2010/01/20/1652412.html,根据自己的理解加了注释及其他的一些东西。
在CAD的二次开发中,有时会使用JIG技术来实现操作的动态性、交互,最常见的比如说是在CAD中定制自己的移动和复制,当然要保持CAD中原有的动态显示效果。
在JIG中我们可以继承EntityJig和DrawJig,对于这两个类,那这两个类有什么区别呢?他们的使用场合又有什么区别呢?
其实,他们之间在操作一些简单的实体的时候是没有多大区别的,硬要说区别的话,那就是在实现一个相同功能时DrawJig比 阅读全文...
AutoCAD .NET: EntityJig – 动态显示尺寸与直线
作为一个新手,最近在研究Jig的用法,发现一篇非常不错的文章:AutoCAD .NET: EntityJig – Dynamic Dimension and Line Jig,自己尝试翻译一下:自己的翻译并不会完全直译原文,自己觉得意思对了就行。
AutoCAD .NET API provides two concrete Jig classes for us to jig different entities in different circumstances, EntityJig and DrawJig. EntityJig is to jig a specific entity as its name indicates and the DrawJig is to jig anything that has graphics to draw, which can be a single entity, a group of entit 阅读全文...
[转]SaveFileDialog的用法
c#获取要保存文件的对话框,用SaveFileDialog类。具体用法很简单分享一下吧,对于初学者可能有用 阅读全文...