New feature to see the current frame's real life date as text during a generated animation

This commit is contained in:
Dion Moult
2021-09-20 17:06:02 +10:00
parent 8cde074fd8
commit 132ec473ec
16 changed files with 219 additions and 17 deletions
@@ -116,7 +116,13 @@ class CreateAllShapes(bpy.types.Operator):
start = time.time()
try:
shape = ifcopenshell.geom.create_shape(settings, element)
print("Success", time.time()-start, len(shape.geometry.verts), len(shape.geometry.edges), len(shape.geometry.faces))
print(
"Success",
time.time() - start,
len(shape.geometry.verts),
len(shape.geometry.edges),
len(shape.geometry.faces),
)
except:
failures.append(element)
print("***** FAILURE *****")