Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make triangulations unique to fix refimages issues. Also tweak examples used for refimages #4044

Merged
merged 8 commits into from
Aug 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
- Fix error with automatic `highclip` or `lowclip` and scalar colors [#4048](https://github.com/MakieOrg/Makie.jl/pull/4048).
- Correct a bug in the `project` function when projecting using a `Scene`. [#3909](https://github.com/MakieOrg/Makie.jl/pull/3909).
- Correct a method ambiguity in `insert!` which was causing `PlotList` to fail on CairoMakie. [#4038](https://github.com/MakieOrg/Makie.jl/pull/4038)
- Delaunay triangulations created via `tricontourf`, `triplot`, and `voronoiplot` no longer use any randomisation in the point insertion order so that results are unique. [#4044](https://github.com/MakieOrg/Makie.jl/pull/4044)
- Improve content scaling support for Wayland and fix incorrect mouse scaling on mac [#4062](https://github.com/MakieOrg/Makie.jl/pull/4062)
- Fix: `band` ignored its `alpha` argument in CairoMakie
- Fix `marker=FastPixel()` makersize and markerspace, improve `spy` recipe [#4043](https://github.com/MakieOrg/Makie.jl/pull/4043).
Expand Down
108 changes: 51 additions & 57 deletions ReferenceTests/src/tests/examples2d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1222,59 +1222,57 @@ end
fig
end

# TODO: as noted in https://github.com/MakieOrg/Makie.jl/pull/3520#issuecomment-1873382060
# this test has some issues with random number generation across Julia 1.6 and 1, for now
# it's disabled until someone has time to look into it

# @reference_test "Triplot of a constrained triangulation with holes and a custom bounding box" begin
# curve_1 = [[
# (0.0, 0.0), (4.0, 0.0), (8.0, 0.0), (12.0, 0.0), (12.0, 4.0),
# (12.0, 8.0), (14.0, 10.0), (16.0, 12.0), (16.0, 16.0),
# (14.0, 18.0), (12.0, 20.0), (12.0, 24.0), (12.0, 28.0),
# (8.0, 28.0), (4.0, 28.0), (0.0, 28.0), (-2.0, 26.0), (0.0, 22.0),
# (0.0, 18.0), (0.0, 10.0), (0.0, 8.0), (0.0, 4.0), (-4.0, 4.0),
# (-4.0, 0.0), (0.0, 0.0),
# ]]
# curve_2 = [[
# (4.0, 26.0), (8.0, 26.0), (10.0, 26.0), (10.0, 24.0),
# (10.0, 22.0), (10.0, 20.0), (8.0, 20.0), (6.0, 20.0),
# (4.0, 20.0), (4.0, 22.0), (4.0, 24.0), (4.0, 26.0)
# ]]
# curve_3 = [[(4.0, 16.0), (12.0, 16.0), (12.0, 14.0), (4.0, 14.0), (4.0, 16.0)]]
# curve_4 = [[(4.0, 8.0), (10.0, 8.0), (8.0, 6.0), (6.0, 6.0), (4.0, 8.0)]]
# curves = [curve_1, curve_2, curve_3, curve_4]
# points = [
# (2.0, 26.0), (2.0, 24.0), (6.0, 24.0), (6.0, 22.0), (8.0, 24.0), (8.0, 22.0),
# (2.0, 22.0), (0.0, 26.0), (10.0, 18.0), (8.0, 18.0), (4.0, 18.0), (2.0, 16.0),
# (2.0, 12.0), (6.0, 12.0), (2.0, 8.0), (2.0, 4.0), (4.0, 2.0),
# (-2.0, 2.0), (4.0, 6.0), (10.0, 2.0), (10.0, 6.0), (8.0, 10.0), (4.0, 10.0),
# (10.0, 12.0), (12.0, 12.0), (14.0, 26.0), (16.0, 24.0), (18.0, 28.0),
# (16.0, 20.0), (18.0, 12.0), (16.0, 8.0), (14.0, 4.0), (14.0, -2.0),
# (6.0, -2.0), (2.0, -4.0), (-4.0, -2.0), (-2.0, 8.0), (-2.0, 16.0),
# (-4.0, 22.0), (-4.0, 26.0), (-2.0, 28.0), (6.0, 15.0), (7.0, 15.0),
# (8.0, 15.0), (9.0, 15.0), (10.0, 15.0), (6.2, 7.8),
# (5.6, 7.8), (5.6, 7.6), (5.6, 7.4), (6.2, 7.4), (6.0, 7.6),
# (7.0, 7.8), (7.0, 7.4)]
# boundary_nodes, points = convert_boundary_points_to_indices(curves; existing_points=points)
# tri = triangulate(points; boundary_nodes=boundary_nodes, rng = RNG.STABLE_RNG)
# refine!(tri, max_area = 1e-3get_total_area(tri), rng = RNG.STABLE_RNG)
# fig, ax, sc = triplot(tri,
# show_points=true,
# show_constrained_edges=true,
# constrained_edge_linewidth=2,
# strokewidth=0.2,
# markersize=15,
# point_color=:blue,
# show_ghost_edges=true, # not as good because the outer boundary is not convex, but just testing
# marker='x',
# bounding_box = (-5,20,-5,35)) # also testing the conversion to Float64 for bbox here
# fig
# end
@reference_test "Triplot of a constrained triangulation with holes and a custom bounding box" begin
curve_1 = [[
(0.0, 0.0), (4.0, 0.0), (8.0, 0.0), (12.0, 0.0), (12.0, 4.0),
(12.0, 8.0), (14.0, 10.0), (16.0, 12.0), (16.0, 16.0),
(14.0, 18.0), (12.0, 20.0), (12.0, 24.0), (12.0, 28.0),
(8.0, 28.0), (4.0, 28.0), (0.0, 28.0), (-2.0, 26.0), (0.0, 22.0),
(0.0, 18.0), (0.0, 10.0), (0.0, 8.0), (0.0, 4.0), (-4.0, 4.0),
(-4.0, 0.0), (0.0, 0.0),
]]
curve_2 = [[
(4.0, 26.0), (8.0, 26.0), (10.0, 26.0), (10.0, 24.0),
(10.0, 22.0), (10.0, 20.0), (8.0, 20.0), (6.0, 20.0),
(4.0, 20.0), (4.0, 22.0), (4.0, 24.0), (4.0, 26.0)
]]
curve_3 = [[(4.0, 16.0), (12.0, 16.0), (12.0, 14.0), (4.0, 14.0), (4.0, 16.0)]]
curve_4 = [[(4.0, 8.0), (10.0, 8.0), (8.0, 6.0), (6.0, 6.0), (4.0, 8.0)]]
curves = [curve_1, curve_2, curve_3, curve_4]
points = [
(2.0, 26.0), (2.0, 24.0), (6.0, 24.0), (6.0, 22.0), (8.0, 24.0), (8.0, 22.0),
(2.0, 22.0), (0.0, 26.0), (10.0, 18.0), (8.0, 18.0), (4.0, 18.0), (2.0, 16.0),
(2.0, 12.0), (6.0, 12.0), (2.0, 8.0), (2.0, 4.0), (4.0, 2.0),
(-2.0, 2.0), (4.0, 6.0), (10.0, 2.0), (10.0, 6.0), (8.0, 10.0), (4.0, 10.0),
(10.0, 12.0), (12.0, 12.0), (14.0, 26.0), (16.0, 24.0), (18.0, 28.0),
(16.0, 20.0), (18.0, 12.0), (16.0, 8.0), (14.0, 4.0), (14.0, -2.0),
(6.0, -2.0), (2.0, -4.0), (-4.0, -2.0), (-2.0, 8.0), (-2.0, 16.0),
(-4.0, 22.0), (-4.0, 26.0), (-2.0, 28.0), (6.0, 15.0), (7.0, 15.0),
(8.0, 15.0), (9.0, 15.0), (10.0, 15.0), (6.2, 7.8),
(5.6, 7.8), (5.6, 7.6), (5.6, 7.4), (6.2, 7.4), (6.0, 7.6),
(7.0, 7.8), (7.0, 7.4)]
boundary_nodes, points = convert_boundary_points_to_indices(curves; existing_points=points)
tri = triangulate(points; randomise = false, boundary_nodes=boundary_nodes, rng = RNG.STABLE_RNG)
fig, ax, sc = triplot(tri,
show_points=true,
show_constrained_edges=true,
constrained_edge_linewidth=2,
strokewidth=0.2,
markersize=15,
markercolor=:blue,
show_ghost_edges=true, # not as good because the outer boundary is not convex, but just testing
marker='x',
bounding_box = (-5,20,-5,35)) # also testing the conversion to Float64 for bbox here
fig
end

@reference_test "Triplot with nonlinear transformation" begin
f = Figure()
ax = PolarAxis(f[1, 1])
points = Point2f[(phi, r) for r in 1:10 for phi in range(0, 2pi, length=36)[1:35]]
points = Point2f[(phi, r) for r in 1:10 for phi in range(0, 2pi, length=36)[1:35]]
noise = i -> 1f-4 * (isodd(i) ? 1 : -1) * i/sqrt(50) # should have small discrepancy
points = points .+ [Point2f(noise(i), noise(i)) for i in eachindex(points)]
# The noise forces the triangulation to be unique. Not using RNG to not disrupt the RNG stream later
tr = triplot!(ax, points)
f
end
Expand Down Expand Up @@ -1312,9 +1310,8 @@ end
end

@reference_test "Voronoiplot for a centroidal tessellation with an automatic colormap" begin
points = [(0.0,0.0),(1.0,0.0),(1.0,1.0),(0.0,1.0)]
points = [(0.0,0.0),(1.0,0.0),(1.0,1.0),(0.0,1.0),(0.2,0.2),(0.25,0.6),(0.5,0.3),(0.1,0.15)]
tri = triangulate(points; boundary_nodes = [1,2,3,4,1], rng = RNG.STABLE_RNG)
refine!(tri; max_area=1e-2, min_angle = 29.871, rng = RNG.STABLE_RNG)
vorn = voronoi(tri)
smooth_vorn = centroidal_smooth(vorn; maxiters = 250, rng = RNG.STABLE_RNG)
cmap = cgrad(:matter)
Expand Down Expand Up @@ -1356,15 +1353,12 @@ end
fig
end

#=

After DelaunayTriangulation@1.0.4, this test started to show slightly randomized triangulations.
Until this gets fixed, we're disabling it.

@reference_test "Voronoiplot with a nonlinear transform" begin
f = Figure()
ax = PolarAxis(f[1, 1], theta_as_x = false)
points = Point2d[(r, phi) for r in 1:10 for phi in range(0, 2pi, length=36)[1:35]]
noise = i -> 1f-4 * (isodd(i) ? 1 : -1) * i/sqrt(50) # should have small discrepancy
points = points .+ [Point2f(noise(i), noise(i)) for i in eachindex(points)] # make triangulation unique
polygon_color = [r for r in 1:10 for phi in range(0, 2pi, length=36)[1:35]]
polygon_color_2 = [phi for r in 1:10 for phi in range(0, 2pi, length=36)[1:35]]
tr = voronoiplot!(ax, points, smooth = false, show_generators = false, color = polygon_color)
Expand All @@ -1374,7 +1368,7 @@ Until this gets fixed, we're disabling it.
Makie.rlims!(ax, 12)
f
end
=#


@reference_test "Voronoiplot with some custom bounding boxes may not contain all data sites" begin
points = [(-3.0, 7.0), (1.0, 6.0), (-1.0, 3.0), (-2.0, 4.0), (3.0, -2.0), (5.0, 5.0), (-4.0, -3.0), (3.0, 8.0)]
Expand Down
2 changes: 1 addition & 1 deletion src/basic_recipes/tricontourf.jl
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
z = elconvert(T, z)
points = [elconvert(T, x)'; elconvert(T, y)']
if triangulation isa DelaunayTriangulation
tri = DelTri.triangulate(points)
tri = DelTri.triangulate(points, randomise = false)

Check warning on line 66 in src/basic_recipes/tricontourf.jl

View check run for this annotation

Codecov / codecov/patch

src/basic_recipes/tricontourf.jl#L66

Added line #L66 was not covered by tests
elseif !(triangulation isa DelTri.Triangulation)
# Wrap user's provided triangulation into a Triangulation. Their triangulation must be such that DelTri.add_triangle! is defined.
if typeof(triangulation) <: AbstractMatrix{<:Int} && size(triangulation, 1) != 3
Expand Down
2 changes: 1 addition & 1 deletion src/basic_recipes/triplot.jl
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@
# Handle transform_func early so tessellation is in cartesian space.
tri = map(p, p.transformation.transform_func, p[1]) do tf, ps
transformed = Makie.apply_transform(tf, ps)
return DelTri.triangulate(transformed)
return DelTri.triangulate(transformed, randomise = false)

Check warning on line 184 in src/basic_recipes/triplot.jl

View check run for this annotation

Codecov / codecov/patch

src/basic_recipes/triplot.jl#L184

Added line #L184 was not covered by tests
end

attr[:transformation] = Transformation(p.transformation; transform_func=identity)
Expand Down
7 changes: 2 additions & 5 deletions src/basic_recipes/voronoiplot.jl
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,8 @@
# Handle transform_func early so tessellation is in cartesian space.
vorn = map(p, p.transformation.transform_func, ps, smooth) do tf, ps, smooth
transformed = Makie.apply_transform(tf, ps)
tri = DelTri.triangulate(transformed)
vorn = DelTri.voronoi(tri)
if smooth
vorn = DelTri.centroidal_smooth(vorn)
end
tri = DelTri.triangulate(transformed, randomise = false)
vorn = DelTri.voronoi(tri, clip = smooth, smooth = smooth, randomise = false)

Check warning on line 137 in src/basic_recipes/voronoiplot.jl

View check run for this annotation

Codecov / codecov/patch

src/basic_recipes/voronoiplot.jl#L136-L137

Added lines #L136 - L137 were not covered by tests
return vorn
end

Expand Down
Loading