在Python中一次遍历三个列表?

2024-04-25 19:01:49 发布

您现在位置:Python中文网/ 问答频道 /正文

这可能是一个相当复杂的问题,因为可能很多人不知道我为其编写的软件:Autodesk Maya 2011。我试图通过编写一个自动执行的脚本来加速一个冗长而缓慢的过程(装配:赋予3d角色移动的能力)。

我会尽力解释情况的。

我有一个脚本,它接受一个对象,遍历该对象的子对象,将它们存储在一个列表中,然后将初始对象放在列表的末尾,由于列表的方式不对而反转列表,然后将初始对象放在前面。

问题:有三个不同的列表,都是相同的对象类型,但名称不同,它们实际上是不同的对象。我的目标是通过生成名为“blendcolors”的节点将它们连接在一起。但是如果我有一个循环来为列表a中的每个对象生成它们,那么我需要一个循环来将它们连接到其他列表中的对象,而我无法理解这一点。

这是我的代码,它已经播放,所以比以前更不完整的实际循环去。

    import maya.cmds as cmds

    def crBC(IKJoint, FKJoint, bindJoint, xQuan, switch):

        # gets children joints of the selected joint
        chHipIK = cmds.listRelatives(IKJoint, ad = True, type = 'joint')
        chHipFK = cmds.listRelatives(FKJoint, ad = True, type = 'joint')
        chHipBind = cmds.listRelatives(bindJoint, ad = True, type = 'joint')
        # list is built backwards, this reverses the list
        chHipIK.reverse()
        chHipFK.reverse()
        chHipBind.reverse()
        # appends the initial joint to the list
        chHipIK.append(IKJoint)
        chHipFK.append(FKJoint)
        chHipBind.append(bindJoint)
        # puts the last joint at the start of the list because the initial joint
        # was added to the end
        chHipIK.insert(0, chHipIK.pop())
        chHipFK.insert(0, chHipFK.pop())
        chHipBind.insert(0, chHipBind.pop())


        # pops off the remaining joints in the list the user does not wish to be blended
        chHipBind[xQuan:] = []

        chHipIK[xQuan:] = []

        chHipFK[xQuan:] = []

       # goes through the bind joints, makes a blend colors for each one, connects
       # the switch to the blender

        for a in chHipBind


            rotBC = cmds.shadingNode('blendColors', asUtility = True, n = a + 'rotate_BC')
            tranBC = cmds.shadingNode('blendColors', asUtility = True, n = a + 'tran_BC')
            scaleBC = cmds.shadingNode('blendColors', asUtility = True, n = a + 'scale_BC')

            cmds.connectAttr(switch + '.ikFkSwitch', rotBC + '.blender')
            cmds.connectAttr(switch + '.ikFkSwitch', tranBC + '.blender')
            cmds.connectAttr(switch + '.ikFkSwitch', scaleBC + '.blender')

        # goes through the ik joints, connects to the blend colors

            for b in chHipIK:
                cmds.connectAttr(b + '.rotate', rotBC + '.color1')
                cmds.connectAttr(b + '.translate', tranBC + '.color1')
                cmds.connectAttr(b + '.scale', scaleBC + '.color1')


            # connects FK joints to the blend colors

            for c in chHipFK:
                cmds.connectAttr(c + '.rotate', rotBC + '.color2')
                cmds.connectAttr(c + '.translate', tranBC + '.color2')
                cmds.connectAttr(c + '.scale', scaleBC + '.color2')

        # connects blend colors to bind joints


            cmds.connectAttr(rotBC + '.output', d + '.rotate')
            cmds.connectAttr(tranBC + '.output', d + '.translate')
            cmds.connectAttr(scaleBC + '.output', d + '.scale')                






    # executes function


    crBC('L_hip_IK', 'L_hip_FK', 'L_hip_JNT', 6, 'L_legSwitch_CTRL')

Tags: theto对象true列表listcmdsswitch
3条回答

为什么会有“三个不同的列表都是相同的对象类型”?为什么不能修复此问题以创建一个列表,其中所有三个对象都正确匹配?

很可能一个简单的映射比三个并行列表要好。

具体来说,您需要修复chHipIK = cmds.listRelatives(IKJoint, ad = True, type = 'joint')才能像这样工作。

chHipIK = [ { 'IK': ik } for ik in mds.listRelatives(IKJoint, ad = True, type = 'joint') ]
for i, fk in enumerate(cmds.listRelatives(FKJoint, ad = True, type = 'joint')):
    chHipIK[i]['FK']= fk
for i, bind in enumerate(cmds.listRelatives(bindJoint, ad = True, type = 'joint')):
    chHipIK[i]['FK']= bind

因此chHipIK是一个映射列表,其中包含所有三条信息。

@florian mayer way with zip或izip工作得很好,但您也可以使用枚举来获取列表计数

list_a  = ["x", "y"]
list_b  = ["k", "j"]
list_c  = ["m", "n"]

for count, item in enumerate(list_a):
    print item, list_b[count], list_c[count]

我不太明白这个问题,你在找

import itertools
for a, b, c in itertools.izip(lst1, lst2, lst3):
    ...

是吗?

izip所做的是,它接受可变数量的参数并返回一个迭代器,迭代器总是产生相应的参数项(第一次运行时第一个参数的元组,第二次运行时第二个参数的元组,等等)。

相关问题 更多 >