Python类型方法和Maya转换节点上的类型函数有什么区别?

时间:2015-12-04 08:57:48

标签: python maya pymel

标题中的问题

示例代码:

>>> j.type()
u'joint'
>>> type(j)
<class 'pymel.core.nodetypes.Joint'>

1 个答案:

答案 0 :(得分:2)

看看这个简单的例子。您正在尝试比较两个不同的东西 - Joint类方法type和python内置函数type - 它们具有相同的名称,全部:

class Joint():
    def type(self):
        return u'joint'

>>> j = Joint()
>>> j.type()
'joint'
>>> type(j)
<class '__main__.Joint'>