( scene, hashType, time )
| 1100 | def testHashStability( self ) : |
| 1101 | |
| 1102 | def collectHashesWalk( scene, hashType, time ) : |
| 1103 | |
| 1104 | result = {} |
| 1105 | result[scene.pathToString(scene.path())] = scene.hash( hashType, time ) |
| 1106 | for name in scene.childNames() : |
| 1107 | result.update( collectHashesWalk( scene.child( name ), hashType, time ) ) |
| 1108 | |
| 1109 | return result |
| 1110 | |
| 1111 | for hashType in IECoreScene.SceneInterface.HashType.values.values() : |
| 1112 |
nothing calls this directly
no test coverage detected