File tree Expand file tree Collapse file tree 4 files changed +18
-0
lines changed Expand file tree Collapse file tree 4 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,9 @@ def check_colocation2D():
6868 "[Test] EdgedCurve has wrong number of colocated points groups." )
6969 first_colocated_points_group = [0 , 1 , 6 ]
7070 second_colocated_points_group = [3 , 5 ]
71+ for group in colocation_inspector .colocated_points_groups ().issues ():
72+ for point in group :
73+ print (point )
7174 if not colocation_inspector .colocated_points_groups ().issues ()[0 ] == first_colocated_points_group and not colocation_inspector .colocated_points_groups ().issues ()[0 ] == second_colocated_points_group :
7275 raise ValueError (
7376 "[Test] EdgedCurve has wrong first colocated points group." )
@@ -115,6 +118,9 @@ def check_colocation3D():
115118 "[Test] (3D) EdgedCurve has wrong number ofgroup of colocated points." )
116119 first_colocated_points_group = [0 , 1 , 6 ]
117120 second_colocated_points_group = [3 , 5 ]
121+ for group in colocation_inspector .colocated_points_groups ().issues ():
122+ for point in group :
123+ print (point )
118124 if not colocation_inspector .colocated_points_groups ().issues ()[0 ] == first_colocated_points_group and not colocation_inspector .colocated_points_groups ().issues ()[0 ] == second_colocated_points_group :
119125 raise ValueError (
120126 "[Test] (3D) EdgedCurve has wrong first colocated points group." )
Original file line number Diff line number Diff line change @@ -116,6 +116,9 @@ def check_colocation3D():
116116 "[Test] (3D) PointSet has wrong number of colocated points." )
117117 first_colocated_points_group = [0 , 1 , 6 ]
118118 second_colocated_points_group = [3 , 5 ]
119+ for group in colocation_inspector .colocated_points_groups ().issues ():
120+ for point in group :
121+ print (point )
119122 if not colocation_inspector .colocated_points_groups ().issues ()[0 ] == first_colocated_points_group and not colocation_inspector .colocated_points_groups ().issues ()[0 ] == second_colocated_points_group :
120123 raise ValueError (
121124 "[Test] (3D) PointSet has wrong first colocated points group." )
Original file line number Diff line number Diff line change @@ -70,6 +70,9 @@ def check_colocation():
7070 raise ValueError ("[Test] Solid has wrong number of colocated points." )
7171 first_colocated_points_group = [0 , 1 , 6 ]
7272 second_colocated_points_group = [3 , 5 ]
73+ for group in colocation_inspector .colocated_points_groups ().issues ():
74+ for point in group :
75+ print (point )
7376 if not colocation_inspector .colocated_points_groups ().issues ()[0 ] == first_colocated_points_group and not colocation_inspector .colocated_points_groups ().issues ()[0 ] == second_colocated_points_group :
7477 raise ValueError (
7578 "[Test] Solid has wrong first colocated points group." )
Original file line number Diff line number Diff line change @@ -68,6 +68,9 @@ def check_colocation2D():
6868 "[Test] Surface has wrong number of colocated points." )
6969 first_colocated_points_group = [0 , 1 , 6 ]
7070 second_colocated_points_group = [3 , 5 ]
71+ for group in colocation_inspector .colocated_points_groups ().issues ():
72+ for point in group :
73+ print (point )
7174 if not colocation_inspector .colocated_points_groups ().issues ()[0 ] == first_colocated_points_group and not colocation_inspector .colocated_points_groups ().issues ()[0 ] == second_colocated_points_group :
7275 raise ValueError (
7376 "[Test] Surface has wrong first colocated points group." )
@@ -115,6 +118,9 @@ def check_colocation3D():
115118 "[Test] (3D) Surface has wrong number of colocated points." )
116119 first_colocated_points_group = [0 , 1 , 6 ]
117120 second_colocated_points_group = [3 , 5 ]
121+ for group in colocation_inspector .colocated_points_groups ().issues ():
122+ for point in group :
123+ print (point )
118124 if not colocation_inspector .colocated_points_groups ().issues ()[0 ] == first_colocated_points_group and not colocation_inspector .colocated_points_groups ().issues ()[0 ] == second_colocated_points_group :
119125 raise ValueError (
120126 "[Test] (3D) Surface has wrong first colocated points group." )
You can’t perform that action at this time.
0 commit comments