diff --git a/src/geode/inspector/inspection/criterion/internal/component_meshes_adjacency.cpp b/src/geode/inspector/inspection/criterion/internal/component_meshes_adjacency.cpp index 4e3d3faa..a16f6342 100644 --- a/src/geode/inspector/inspection/criterion/internal/component_meshes_adjacency.cpp +++ b/src/geode/inspector/inspection/criterion/internal/component_meshes_adjacency.cpp @@ -112,7 +112,7 @@ namespace geode } catch( const OpenGeodeException& e ) { - Logger::warn( e.what() ); + Logger::warning( e.what() ); issues.add_issue( polygon_edge, absl::StrCat( "edge ", edge_id, " of polygon ", polygon_id, diff --git a/src/geode/inspector/inspection/criterion/intersections/model_intersections.cpp b/src/geode/inspector/inspection/criterion/intersections/model_intersections.cpp index d5f5bc99..e6b298a7 100644 --- a/src/geode/inspector/inspection/criterion/intersections/model_intersections.cpp +++ b/src/geode/inspector/inspection/criterion/intersections/model_intersections.cpp @@ -772,7 +772,7 @@ namespace geode { if( surface.mesh().nb_polygons() == 0 ) { - geode::Logger::warn( + geode::Logger::warning( "One of the surface meshes has an empty mesh, cannot " "compute the AABBTree used for detecting the mesh " "intersections, no intersections will be " @@ -854,7 +854,7 @@ namespace geode { if( line.mesh().nb_edges() == 0 ) { - geode::Logger::warn( + geode::Logger::warning( "One of the line meshes has an empty mesh, " "skipping line-surface intersection detection." ); return component_intersections; @@ -934,7 +934,7 @@ namespace geode { if( surface.mesh().nb_polygons() == 0 ) { - geode::Logger::warn( + geode::Logger::warning( "One of the surface meshes has an empty mesh, " "skipping line-surface intersection detection." ); return component_intersections; @@ -944,7 +944,7 @@ namespace geode { if( line.mesh().nb_edges() == 0 ) { - geode::Logger::warn( + geode::Logger::warning( "One of the line meshes has an empty mesh, " "skipping line-surface intersection detection." ); return component_intersections; diff --git a/src/geode/inspector/inspection/criterion/negative_elements/solid_negative_elements.cpp b/src/geode/inspector/inspection/criterion/negative_elements/solid_negative_elements.cpp index 8732f6c6..b0fbaf0f 100644 --- a/src/geode/inspector/inspection/criterion/negative_elements/solid_negative_elements.cpp +++ b/src/geode/inspector/inspection/criterion/negative_elements/solid_negative_elements.cpp @@ -82,7 +82,7 @@ namespace geode mesh_.polyhedron_vertex( { polyhedron_id, 2 } ) ), mesh_.point( mesh_.polyhedron_vertex( { polyhedron_id, 3 } ) ) }; - return tetrahedron_volume_sign( tetrahedron ) == Sign::negative; + return tetrahedron_volume_sign( tetrahedron ) == SIGN::negative; } return mesh_.polyhedron_volume( polyhedron_id ) < 0; } diff --git a/src/geode/inspector/inspection/criterion/negative_elements/surface_negative_elements.cpp b/src/geode/inspector/inspection/criterion/negative_elements/surface_negative_elements.cpp index f5ea4ea8..9ca2c615 100644 --- a/src/geode/inspector/inspection/criterion/negative_elements/surface_negative_elements.cpp +++ b/src/geode/inspector/inspection/criterion/negative_elements/surface_negative_elements.cpp @@ -49,7 +49,7 @@ namespace geode for( const auto polygon_id : Range{ mesh_.nb_polygons() } ) { if( polygon_area_sign( mesh_.polygon( polygon_id ) ) - == Sign::negative ) + == SIGN::negative ) { return true; } @@ -68,7 +68,7 @@ namespace geode for( const auto polygon_id : Range{ mesh_.nb_polygons() } ) { if( polygon_area_sign( mesh_.polygon( polygon_id ) ) - == Sign::negative ) + == SIGN::negative ) { wrong_polygons.add_issue( polygon_id, absl::StrCat( "negative polygon ", polygon_id ) ); diff --git a/src/geode/inspector/inspection/topology/internal/expected_nb_cmvs.cpp b/src/geode/inspector/inspection/topology/internal/expected_nb_cmvs.cpp index 24fd3f05..9b8dd93b 100644 --- a/src/geode/inspector/inspection/topology/internal/expected_nb_cmvs.cpp +++ b/src/geode/inspector/inspection/topology/internal/expected_nb_cmvs.cpp @@ -185,7 +185,7 @@ namespace /// On one side of a topological non-manifold => 2 cases possible, /// depending on wether the topological non-manifold is on the /// interior or exterior of the block - geode::Logger::warn( absl::StrCat( + geode::Logger::warning( absl::StrCat( "[expected_block_cmvs_and_error] Unique vertex ", unique_vertex_id, " at position [", brep.block( unique_vertex_cmvs.block_cmvs[0].component_id.id() )