File tree Expand file tree Collapse file tree 2 files changed +5
-9
lines changed Expand file tree Collapse file tree 2 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -427,14 +427,12 @@ namespace geode
427427
428428 public:
429429 explicit Impl ( SolidMesh& solid )
430- : polyhedron_around_vertex_(
431- solid.vertex_attribute_manager()
430+ : polyhedron_around_vertex_( solid.vertex_attribute_manager()
432431 .template find_or_create_attribute< VariableAttribute,
433432 PolyhedronVertex >( " polyhedron_around_vertex" ,
434433 PolyhedronVertex{},
435434 { false , false , false } ) ),
436- polyhedra_around_vertex_(
437- solid.vertex_attribute_manager()
435+ polyhedra_around_vertex_( solid.vertex_attribute_manager()
438436 .template find_or_create_attribute< VariableAttribute,
439437 CachedPolyhedra >( POLYHEDRA_AROUND_VERTEX_NAME,
440438 CachedPolyhedra{},
@@ -1340,7 +1338,7 @@ namespace geode
13401338 {
13411339 facet_vertices.push_back (
13421340 vertices[polyhedron_facet_vertex_id ( { facet, v } )
1343- .vertex_id ] );
1341+ .vertex_id ] );
13441342 }
13451343 }
13461344 return facets_vertices;
Original file line number Diff line number Diff line change @@ -250,14 +250,12 @@ namespace geode
250250
251251 public:
252252 Impl ( SurfaceMesh& surface )
253- : polygon_around_vertex_(
254- surface.vertex_attribute_manager()
253+ : polygon_around_vertex_( surface.vertex_attribute_manager()
255254 .template find_or_create_attribute< VariableAttribute,
256255 PolygonVertex >( " polygon_around_vertex" ,
257256 PolygonVertex{},
258257 { false , false , false } ) ),
259- polygons_around_vertex_ (
260- surface.vertex_attribute_manager()
258+ polygons_around_vertex_ ( surface.vertex_attribute_manager()
261259 .template find_or_create_attribute< VariableAttribute,
262260 CachedPolygons >( POLYGONS_AROUND_VERTEX_NAME,
263261 CachedPolygons{},
You can’t perform that action at this time.
0 commit comments