MCPcopy Create free account
hub / github.com/ImageEngine/cortex / printTree

Function printTree

test/IECoreScene/LinkedSceneTest.py:48–52  ·  view source on GitHub ↗
( s, depth )

Source from the content-addressed store, hash-verified

46import imath
47
48def printTree( s, depth ) :
49
50 for c in s.childNames() :
51 print( ' ' * depth + c )
52 printTree( s.child( c ), depth + 1 )
53
54class LinkedSceneTest( unittest.TestCase ) :
55

Callers

nothing calls this directly

Calls 2

childNamesMethod · 0.45
childMethod · 0.45

Tested by

no test coverage detected