Skip to content

Commit

Permalink
Fix(OG-Geosciences): Rename global_epsilon to GLOBAL_EPSILON (const v…
Browse files Browse the repository at this point in the history
…ariable name convention)
  • Loading branch information
benoit2776 committed Jul 11, 2024
1 parent 3d78ef5 commit f6b469e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ namespace geode
surface_distance_to_triangles_.at( surface.id() ) ) );
if( std::get< 0 >( surface_distance_to_triangles_.at(
surface.id() )( point, closest_triangle ) )
< global_epsilon )
< GLOBAL_EPSILON )
{
return closest_triangle;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ namespace geode
point, block_distance_to_tetras_.at( block.id() ) ) );
if( std::get< 0 >( block_distance_to_tetras_.at( block.id() )(
point, closest_tetrahedron ) )
< global_epsilon )
< GLOBAL_EPSILON )
{
return closest_tetrahedron;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ namespace geode
block.id() ) ) );
if( std::get< 0 >( block_stratigraphic_distance_to_tetras_.at(
block.id() )( stratigraphic_point, closest_tetrahedron ) )
< global_epsilon )
< GLOBAL_EPSILON )
{
return closest_tetrahedron;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ namespace geode
surface.id() ) ) );
if( std::get< 0 >( surface_stratigraphic_distance_to_triangles_.at(
surface.id() )( stratigraphic_point, closest_triangle ) )
< global_epsilon )
< GLOBAL_EPSILON )
{
return closest_triangle;
}
Expand Down

0 comments on commit f6b469e

Please sign in to comment.