Skip to content

Commit

Permalink
Test hacking
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldresser-ie committed Feb 26, 2025
1 parent 76780fd commit 035370c
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,19 @@ def assertRendersMatch( capturingA, capturingB, expandProcedurals = False, ignor
)

if aObjects[i] != bObjects[i]:
print( "A Object" )
m = aObjects[i]
print( m.verticesPerFace )
print( m.vertexIds )
for k in m.keys():
print( k, m[k] )
print( "B Object" )
m = bObjects[i]
print( m.verticesPerFace )
print( m.vertexIds )
for k in m.keys():
print( k, m[k] )

raise AssertionError( "Mismatch for objects of type %s at path '%s', sample %i" % ( type( aObjects[i] ).__name__, k, i ) )

aTransformTimes = expandA[k].capturedTransformSampleTimes
Expand Down

0 comments on commit 035370c

Please sign in to comment.