File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
include/geode/model/helpers Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -214,7 +214,7 @@ namespace geode
214214 block_component_mesh_polygons ( const BRep& brep,
215215 const PolygonVertices& polygon_unique_vertices );
216216
217- [[nodiscard]] std::vector< PolyhedronFacets >
217+ [[nodiscard]] std::vector< PolyhedronFacet >
218218 opengeode_model_api block_component_mesh_polygons ( const BRep& brep,
219219 const PolygonVertices& polygon_unique_vertices,
220220 const Block3D& block );
Original file line number Diff line number Diff line change @@ -691,7 +691,7 @@ namespace geode
691691 return polygons;
692692 }
693693
694- std::vector< PolyhedronFacets > block_component_mesh_polygons (
694+ std::vector< PolyhedronFacet > block_component_mesh_polygons (
695695 const BRep& model,
696696 const PolygonVertices& polygon_unique_vertices,
697697 const Block3D& block )
@@ -702,7 +702,7 @@ namespace geode
702702 {
703703 return {};
704704 }
705- std::vector< PolyhedronFacets > facets;
705+ std::vector< PolyhedronFacet > facets;
706706 const auto & mesh = block.mesh ();
707707 for ( const auto & pair : block_pairs.at ( block.component_id () ) )
708708 {
You can’t perform that action at this time.
0 commit comments