Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
BotellaA committed Jul 15, 2024
1 parent 8bb115a commit 1720a8c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 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( 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( 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( block_stratigraphic_distance_to_tetras_.at( block.id() )(
stratigraphic_point, closest_tetrahedron )
< global_epsilon )
< GLOBAL_EPSILON )
{
return closest_tetrahedron;
}
Expand Down Expand Up @@ -262,7 +262,7 @@ namespace geode
const Block3D& block,
index_t tetrahedron_id )
: indices_{ block.mesh().polyhedron_vertices(
tetrahedron_id ) },
tetrahedron_id ) },
positive_tetra_{
model.stratigraphic_coordinates( block, indices_[0] )
.stratigraphic_coordinates(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ namespace geode
surface.id() ) ) );
if( 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 1720a8c

Please sign in to comment.