@@ -41,10 +41,6 @@ namespace geode
4141 .def_readwrite ( " unique_vertices_linked_to_multiple_corners" ,
4242 &BRepCornersTopologyInspectionResult::
4343 unique_vertices_linked_to_multiple_corners )
44- .def_readwrite (
45- " unique_vertices_linked_to_multiple_internals_corner" ,
46- &BRepCornersTopologyInspectionResult::
47- unique_vertices_linked_to_multiple_internals_corner )
4844 .def_readwrite (
4945 " unique_vertices_linked_to_not_internal_nor_boundary_corner" ,
5046 &BRepCornersTopologyInspectionResult::
@@ -64,10 +60,10 @@ namespace geode
6460 .def_readwrite ( " lines_not_linked_to_a_unique_vertex" ,
6561 &BRepLinesTopologyInspectionResult::
6662 lines_not_linked_to_a_unique_vertex )
67- .def_readwrite (
68- " unique_vertices_linked_to_not_internal_nor_boundary_line " ,
63+ .def_readwrite ( " unique_vertices_linked_to_line_with_wrong_ "
64+ " relationship_to_surface " ,
6965 &BRepLinesTopologyInspectionResult::
70- unique_vertices_linked_to_not_internal_nor_boundary_line )
66+ unique_vertices_linked_to_line_with_wrong_relationship_to_surface )
7167 .def_readwrite (
7268 " unique_vertices_linked_to_a_line_with_invalid_embeddings" ,
7369 &BRepLinesTopologyInspectionResult::
@@ -92,18 +88,10 @@ namespace geode
9288 .def_readwrite ( " surfaces_not_linked_to_a_unique_vertex" ,
9389 &BRepSurfacesTopologyInspectionResult::
9490 surfaces_not_linked_to_a_unique_vertex )
95- .def_readwrite (
96- " unique_vertices_linked_to_not_internal_nor_boundary_surface" ,
97- &BRepSurfacesTopologyInspectionResult::
98- unique_vertices_linked_to_not_internal_nor_boundary_surface )
9991 .def_readwrite (
10092 " unique_vertices_linked_to_a_surface_with_invalid_embbedings" ,
10193 &BRepSurfacesTopologyInspectionResult::
10294 unique_vertices_linked_to_a_surface_with_invalid_embbedings )
103- .def_readwrite (
104- " unique_vertices_linked_to_a_single_and_invalid_surface" ,
105- &BRepSurfacesTopologyInspectionResult::
106- unique_vertices_linked_to_a_single_and_invalid_surface )
10795 .def_readwrite (
10896 " unique_vertices_linked_to_several_and_invalid_surfaces" ,
10997 &BRepSurfacesTopologyInspectionResult::
@@ -119,8 +107,8 @@ namespace geode
119107 pybind11::class_< BRepBlocksTopologyInspectionResult >(
120108 module , " BRepBlocksTopologyInspectionResult" )
121109 .def ( pybind11::init<>() )
122- .def_readwrite ( " blocks_not_meshed " ,
123- &BRepBlocksTopologyInspectionResult::blocks_not_meshed )
110+ .def_readwrite ( " some_blocks_not_meshed " ,
111+ &BRepBlocksTopologyInspectionResult::some_blocks_not_meshed )
124112 .def_readwrite ( " blocks_not_linked_to_a_unique_vertex" ,
125113 &BRepBlocksTopologyInspectionResult::
126114 blocks_not_linked_to_a_unique_vertex )
@@ -131,6 +119,23 @@ namespace geode
131119 .def_readwrite ( " unique_vertices_with_incorrect_block_cmvs_count" ,
132120 &BRepBlocksTopologyInspectionResult::
133121 unique_vertices_with_incorrect_block_cmvs_count )
122+ .def_readwrite ( " unique_vertices_linked_to_surface_with_wrong_"
123+ " relationship_to_blocks" ,
124+ &BRepBlocksTopologyInspectionResult::
125+ unique_vertices_linked_to_surface_with_wrong_relationship_to_blocks )
126+ .def_readwrite (
127+ " unique_vertices_linked_to_a_single_and_invalid_surface" ,
128+ &BRepBlocksTopologyInspectionResult::
129+ unique_vertices_linked_to_a_single_and_invalid_surface )
130+ .def_readwrite ( " unique_vertex_linked_to_multiple_invalid_surfaces" ,
131+ &BRepBlocksTopologyInspectionResult::
132+ unique_vertex_linked_to_multiple_invalid_surfaces )
133+ .def_readwrite ( " blocks_with_not_closed_boundary_surfaces" ,
134+ &BRepBlocksTopologyInspectionResult::
135+ blocks_with_not_closed_boundary_surfaces )
136+ .def_readwrite ( " model_boundaries_dont_form_a_closed_surface" ,
137+ &BRepBlocksTopologyInspectionResult::
138+ model_boundaries_dont_form_a_closed_surface )
134139 .def ( " string" , &BRepBlocksTopologyInspectionResult::string )
135140 .def ( " inspection_type" ,
136141 &BRepBlocksTopologyInspectionResult::inspection_type );
0 commit comments