We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a928f89 commit c4a4a3fCopy full SHA for c4a4a3f
src/gh/diffCheck/diffCheck/df_joint_detector.py
@@ -101,6 +101,8 @@ def run(self) :
101
break
102
103
if is_hole:
104
+ # TODO: for future development get rid of error
105
+ raise NotImplementedError("Hole detected, not implemented yet.")
106
self._holes.append(b)
107
elif is_cut:
108
self._cuts.append(b)
src/gh/diffCheck/diffCheck_app.py
@@ -19,7 +19,7 @@
19
:param i_export_dir: directory to export the xml
20
:param i_dump: whether to dump the xml
21
"""
22
- # data_faces = diffCheck.df_joint_detector.JointDetector(i_breps[0]).run()
+ # o_joints = diffCheck.df_joint_detector.JointDetector(i_breps[0]).run()
23
# beams
24
beams = []
25
for brep in i_breps:
0 commit comments