摘要: 1,"Get Inf Joint from file" 选择文件中储存的骨骼信息; 2,"Export skinWeight" 导出权重; 3,"Import skinWeight" 导入权重; 4,"Batch Export skinWeight" 批量导出权重; 5,"Batch Imports 阅读全文
posted @ 2016-04-04 02:51 Jonn. 阅读(394) 评论(0) 推荐(0) 编辑
摘要: Polygon table by Pedro Amaro SantosLisboa, Portugal posted athttp://forums.cgsociety.org/showthread.php?f=2&t=764151http://nicholasgiovinco.comSo Chemits have the Periodic Table, Designers have Font a... 阅读全文
posted @ 2015-11-18 00:16 Jonn. 阅读(582) 评论(0) 推荐(0) 编辑
摘要: 来自为知笔记(Wiz) 阅读全文
posted @ 2015-09-03 23:02 Jonn. 阅读(222) 评论(0) 推荐(0) 编辑
摘要: I've seen a lot of queries about getting scipy working in Maya (Windows 64 bit) with a few not 100% reproducible answers.So after a long personal struggle with the problem, here's my solution which wi... 阅读全文
posted @ 2015-09-02 22:53 Jonn. 阅读(624) 评论(0) 推荐(0) 编辑
摘要: 您的浏览器(Chrome 33) 需要更新。该浏览器有诸多安全漏洞,无法显示本网站的所有功能。了解如何更新浏览器×p-nand-q.comC++PythonProgrammingLanguagesHumorToolsMiscBuilding Python 2.7.10 with Visual Studio 2010 or 20157th revision, August 7, 20... 阅读全文
posted @ 2015-09-02 22:51 Jonn. 阅读(619) 评论(0) 推荐(0) 编辑
摘要: OrderedDict使用dict时,Key是无序的。在对dict做迭代时,我们无法确定Key的顺序。如果要保持Key的顺序,可以用OrderedDict:>>> from collections import OrderedDict>>> d = dict([('a', 1), ('b', 2), ('c', 3)])>>> d # dict的Key是无序的{'a': 1, 'c': 3, 'b... 阅读全文
posted @ 2015-08-11 22:56 Jonn. 阅读(787) 评论(0) 推荐(0) 编辑
摘要: To compile numpy, create a site.cfg file in numpy's source directory with the following or similar content: [mkl] include_dirs = C:/Program Files (x86)/Intel/Composer XE/mkl/include library_dirs =... 阅读全文
posted @ 2015-08-11 13:26 Jonn. 阅读(635) 评论(0) 推荐(0) 编辑
摘要: sys.dont_write_bytecode = 1来自为知笔记(Wiz) 阅读全文
posted @ 2015-04-16 09:47 Jonn. 阅读(349) 评论(0) 推荐(0) 编辑
摘要: 网上没有找到这样的插件自己造了一个https://github.com/jonntd/connectionmaya附件列表 阅读全文
posted @ 2014-11-18 11:02 Jonn. 阅读(324) 评论(0) 推荐(0) 编辑
摘要: 1、在python安装目录下的lib下的site-packages 目录中,新建文件sitecustomize.py。这是个特殊的文件,在python启动时会自动执行其中的语句。在sitecustomize.py中的语句sys.setdefaultencoding("UTF-8")的作用是将默认编码设置为"utf-8",样使用中文时就不会出现 UnicodeError错误。设置前的默认编码是A... 阅读全文
posted @ 2014-10-22 15:21 Jonn. 阅读(3546) 评论(0) 推荐(1) 编辑