Skip to content

Commit 6b67948

Browse files
committed
FIX: cleaning needless prints
1 parent ed64d49 commit 6b67948

File tree

2 files changed

+0
-22
lines changed

2 files changed

+0
-22
lines changed

src/gh/components/DF_xml_exporter/code.py

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ def RunScript(self,
3333
# beams
3434
beams: typing.List[DFBeam] = []
3535
for brep in i_breps:
36-
print(f"Processing brep {brep}")
37-
print(f"Type: {type(brep)}")
3836
beam = DFBeam.from_brep(brep)
3937
beams.append(beam)
4038

@@ -51,26 +49,6 @@ def RunScript(self,
5149
o_joints = [jf.to_brep() for jf in assembly1.all_joint_faces]
5250
o_sides = [sf.to_brep() for sf in assembly1.all_side_faces]
5351

54-
###########################
55-
56-
# faces, o_debug = diffCheck.df_joint_detector.JointDetector(i_breps[0]).run()
57-
58-
# # o_joints = [f.to_brep() for f in faces]
59-
# # o_sides = [f.to_brep() for f in faces]
60-
61-
# o_xml = ""
62-
# o_joints = []
63-
# o_sides = []
64-
65-
# for f in faces:
66-
# if f[1] != None:
67-
# o_joints.append(f[0])
68-
# else:
69-
# o_sides.append(f[0])
70-
71-
72-
73-
7452
return o_xml, o_joints, o_sides, o_debug
7553

7654

Binary file not shown.

0 commit comments

Comments
 (0)