Python For Maya_Artist Friendly Programming 学习笔记(第一章)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python For Maya_Artist Friendly Programming 学习笔记(第一章)相关的知识,希望对你有一定的参考价值。

#CubeRig
import maya.cmds as cmds
cube = cmds.polyCube()
cubeShape = cube[0]
circle = cmds.circle()
circleShape = circle[0]
cmds.parent(cubeShape,circleShape)
cmds.setAttr(cubeShape+".translate",lock=True)
cmds.setAttr(cubeShape+".rotate",lock=True)
cmds.setAttr(cubeShape+".scale",lock=True)
cmds.select(circleShape)











以上是关于Python For Maya_Artist Friendly Programming 学习笔记(第一章)的主要内容,如果未能解决你的问题,请参考以下文章

python imapsave - 来自http://stackp.online.fr/?p=25

python 来自https://forum.ubuntu-fr.org/viewtopic.php?id=24296

Python:文件操作

python 可打印的pandas组(来自http://stackoverflow.com/questions/14734533/how-to-access-pandas-groupby-datafr

python ElasticSearch自定义排序,基于提供的ids数组顺序。来自这里的原始代码:http://damienalexandre.fr/post/elasticsearch-ids-qu

009-流程控制 for 语句