Skip to content

Commit

Permalink
Apply prepare changes
Browse files Browse the repository at this point in the history
  • Loading branch information
BotellaA authored and github-actions[bot] committed Mar 6, 2025
1 parent 29ed8ad commit 7423cfe
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/geode/mesh/core/solid_mesh.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -412,11 +412,13 @@ namespace geode

public:
explicit Impl( SolidMesh& solid )
: polyhedron_around_vertex_( solid.vertex_attribute_manager()
: polyhedron_around_vertex_(
solid.vertex_attribute_manager()
.template find_or_create_attribute< VariableAttribute,
PolyhedronVertex >(
"polyhedron_around_vertex", PolyhedronVertex{} ) ),
polyhedra_around_vertex_( solid.vertex_attribute_manager()
polyhedra_around_vertex_(
solid.vertex_attribute_manager()
.template find_or_create_attribute< VariableAttribute,
CachedPolyhedra >(
POLYHEDRA_AROUND_VERTEX_NAME, CachedPolyhedra{} ) )
Expand Down Expand Up @@ -1253,7 +1255,7 @@ namespace geode
{
facet_vertices.push_back(
vertices[polyhedron_facet_vertex_id( { facet, v } )
.vertex_id] );
.vertex_id] );
}
}
return facets_vertices;
Expand Down

0 comments on commit 7423cfe

Please sign in to comment.