當前位置: 首頁>>代碼示例>>Python>>正文


Python InstanceFileHandler.getNodeNames方法代碼示例

本文整理匯總了Python中val_description.InstanceFileHandler.InstanceFileHandler.getNodeNames方法的典型用法代碼示例。如果您正苦於以下問題:Python InstanceFileHandler.getNodeNames方法的具體用法?Python InstanceFileHandler.getNodeNames怎麽用?Python InstanceFileHandler.getNodeNames使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在val_description.InstanceFileHandler.InstanceFileHandler的用法示例。


在下文中一共展示了InstanceFileHandler.getNodeNames方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: testLoadAnkleInstanceFile

# 需要導入模塊: from val_description.InstanceFileHandler import InstanceFileHandler [as 別名]
# 或者: from val_description.InstanceFileHandler.InstanceFileHandler import getNodeNames [as 別名]
    def testLoadAnkleInstanceFile(self):
        sampleInstanceFile = self.testDirectory + '/test_files/ankle_instance.xml'
        instanceFileHandler = InstanceFileHandler(sampleInstanceFile)

        nodesToCheck = instanceFileHandler.getNodeNames()

        assert '/left_leg/ankle/left_actuator' in nodesToCheck
        assert '/left_leg/ankle/right_actuator' in nodesToCheck
開發者ID:uml-robotics,項目名稱:val_description,代碼行數:10,代碼來源:test_InstanceFileHandler.py

示例2: testForearmCoeffs

# 需要導入模塊: from val_description.InstanceFileHandler import InstanceFileHandler [as 別名]
# 或者: from val_description.InstanceFileHandler.InstanceFileHandler import getNodeNames [as 別名]
    def testForearmCoeffs(self):
        sampleInstanceFile = self.testDirectory + "/test_files/test_forearm.xml"
        instanceFileHandler = InstanceFileHandler(sampleInstanceFile)

        node1 = '/forearm/forearm_driver1'
        node2 = '/forearm/forearm_driver2'

        nodeNames = instanceFileHandler.getNodeNames()

        assert(node1 in nodeNames)
        assert(node2 in nodeNames)

        forearmCoeffDictionary = instanceFileHandler.getForearmCoeffDictionary()

        expectedAthenaDictionary = {}
        expectedAthenaDictionary[node1] = {'Pitch_offset': -2331, 'Yaw_offset': 1596, 'Pitch_hilmt': 1500, 'Pitch-lolmt': -1500, 'Pitch_cnvtrad': -0.000767}
        expectedAthenaDictionary[node2] = {'Fing1_elecoffset': 0.0, 'Fing1_locmdlmt': 100.0, 'Fing1_hicmdlmt': 5214.0, 'Fing1_posKP': 1.0, 'Fing1_posKD': 0.0}

        assert cmp(forearmCoeffDictionary[node1], expectedAthenaDictionary[node1])
        for key, value in forearmCoeffDictionary[node2].iteritems():
            assert(forearmCoeffDictionary[node2][key] - value == 0)
開發者ID:RIVeR-Lab,項目名稱:ihmc-open-robotics-software,代碼行數:23,代碼來源:test_InstanceFileHandler.py

示例3: testGetNodes

# 需要導入模塊: from val_description.InstanceFileHandler import InstanceFileHandler [as 別名]
# 或者: from val_description.InstanceFileHandler.InstanceFileHandler import getNodeNames [as 別名]
    def testGetNodes(self):
        sampleInstanceFile = self.testDirectory + '/test_files/valkyrie_A.xml'
        instanceFileHandler = InstanceFileHandler(sampleInstanceFile)
        nodes = instanceFileHandler.getNodeNames()
        nodesToCheck = ['/left_leg/j1',
                        '/left_leg/j2',
                        '/left_leg/j3',
                        '/left_leg/j4',
                        '/left_leg/ankle/left_actuator',
                        '/left_leg/ankle/right_actuator',
                        '/right_leg/j1',
                        '/right_leg/j2',
                        '/right_leg/j3',
                        '/right_leg/j4',
                        '/right_leg/ankle/left_actuator',
                        '/right_leg/ankle/right_actuator',
                        '/left_arm/j3',
                        '/left_arm/j2',
                        '/left_arm/j3',
                        '/left_arm/j4',
                        '/left_arm/j5',
                        '/left_arm/wrist/top_actautor',
                        '/left_arm/wrist/bottom_actuator',
                        '/right_arm/j3',
                        '/right_arm/j2',
                        '/right_arm/j3',
                        '/right_arm/j4',
                        '/right_arm/j5',
                        '/right_arm/wrist/top_actautor',
                        '/right_arm/wrist/bottom_actuator',
                        '/neck/j1',
                        '/neck/j2',
                        '/neck/j3',
                        '/trunk/j1',
                        '/trunk/waist/left_actuator',
                        '/trunk/waist/right_actuator']

        for node in nodes:
            assert node in nodesToCheck
開發者ID:uml-robotics,項目名稱:val_description,代碼行數:41,代碼來源:test_InstanceFileHandler.py


注:本文中的val_description.InstanceFileHandler.InstanceFileHandler.getNodeNames方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。