Skip to content

Commit b5a6929

Browse files
committed
simulation/extract_faces: silence verbose face-key debug print
- Comment out noisy per-face key print used for debugging to keep logs clean during large mesh processing.
1 parent 5a7fdb8 commit b5a6929

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

svv/simulation/utils/extract_faces.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ def compute_circularity(loop_polydata):
407407
npts = face.GetNumberOfPoints()
408408
# Canonicalize face nodes to a sorted tuple so orientation/order doesn't matter
409409
key = tuple(sorted(face.GetPointId(k) for k in range(npts)))
410-
print("key: {} -> {}".format(key, i))
410+
#print("key: {} -> {}".format(key, i))
411411
face_to_cell[key] = i
412412
#for i, cap in enumerate(iscap):
413413
# if not cap == 1:

0 commit comments

Comments
 (0)