( scene, hashType, time, hashResults )
| 1050 | m = IECoreScene.SceneCache( os.path.join( "test", "IECore", "data", "sccFiles", "animatedSpheres.scc" ), IECore.IndexedIO.OpenMode.Read ) |
| 1051 | |
| 1052 | def collectHashes( scene, hashType, time, hashResults ) : |
| 1053 | counter = 1 |
| 1054 | h = scene.hash( hashType, time ).toString() |
| 1055 | hashResults.add( h ) |
| 1056 | for n in scene.childNames() : |
| 1057 | counter += collectHashes( scene.child(n), hashType, time, hashResults ) |
| 1058 | return counter |
| 1059 | |
| 1060 | hashTypes = IECoreScene.SceneInterface.HashType.values.values() |
| 1061 |
nothing calls this directly
no test coverage detected