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 Nov 28, 2024
1 parent 66bb0d7 commit 54a7023
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/geode/mesh/core/surface_mesh.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -274,11 +274,13 @@ namespace geode

public:
Impl( SurfaceMesh& surface )
: polygon_around_vertex_( surface.vertex_attribute_manager()
: polygon_around_vertex_(
surface.vertex_attribute_manager()
.template find_or_create_attribute< VariableAttribute,
PolygonVertex >(
"polygon_around_vertex", PolygonVertex{} ) ),
polygons_around_vertex_( surface.vertex_attribute_manager()
polygons_around_vertex_(
surface.vertex_attribute_manager()
.template find_or_create_attribute< VariableAttribute,
CachedPolygons >(
POLYGONS_AROUND_VERTEX_NAME, CachedPolygons{} ) )
Expand Down

0 comments on commit 54a7023

Please sign in to comment.