Skip to content

Commit

Permalink
fix rounding error for v1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
LasNikas committed Jan 16, 2025
1 parent 73ef080 commit f026ddc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/preprocessing/packing/signed_distance.jl
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,9 @@

distances = data.signed_distances

@test isapprox(signed_distance_field.positions, points; rtol=1e-4)
@test isapprox(signed_distance_field.normals, vertex_normals; rtol=1e-4)
@test isapprox(signed_distance_field.distances, distances; rtol=1e-4)
@test isapprox(signed_distance_field.positions, points; rtol=1e-3)
@test isapprox(signed_distance_field.normals, vertex_normals; rtol=1e-3)
@test isapprox(signed_distance_field.distances, distances; rtol=1e-3)
end
end
end
Expand Down

0 comments on commit f026ddc

Please sign in to comment.