-
-
Notifications
You must be signed in to change notification settings - Fork 313
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
Delaunay recipes #3159
Delaunay recipes #3159
Conversation
…s to both plot types
Compile Times benchmarkNote, that these numbers may fluctuate on the CI servers, so take them with a grain of salt. All benchmark results are based on the mean time and negative percent mean faster than the base branch. Note, that GLMakie + WGLMakie run on an emulated GPU, so the runtime benchmark is much slower. Results are from running: using_time = @ctime using Backend
# Compile time
create_time = @ctime fig = scatter(1:4; color=1:4, colormap=:turbo, markersize=20, visible=true)
display_time = @ctime Makie.colorbuffer(display(fig))
# Runtime
create_time = @benchmark fig = scatter(1:4; color=1:4, colormap=:turbo, markersize=20, visible=true)
display_time = @benchmark Makie.colorbuffer(display(fig))
|
Can someone check: https://docs.makie.org/previews/PR3159/examples/plotting_functions/voronoiplot/ # from the project where you developped Makie
using ReferenceUpdater; ReferenceUpdater.serve_update_page(pr=3102) I'm not 100% sure what the right output is supposed to look! |
Can't edit but I think those changes I've just reviewed will make the docs look better. |
Co-authored-by: Daniel VandenHeuvel <95613936+DanielVandH@users.noreply.github.com>
This would be a good idea.
I think that's okay, go for it. |
Co-authored-by: Daniel VandenHeuvel <95613936+DanielVandH@users.noreply.github.com>
Missing reference imagesFound 8 new images without existing references. |
So... Is this ready now? ^^ I've been updating the refimages quite often, so if this isn't ready yet, I won't update them right away ;) |
As far as I can tell, everything is good. Those failed tests worked fine for me locally - did something go wrong with them in the test, or were they just not updated properly? If it's the latter, then I'm happy with it all |
I just realized that a lot of tests pass the RNG with |
For all those that don't, the triangulation is unique and so there is no risk of failure. For Voronoi diagrams, even if the triangulation is non-unique then the diagram is still unique. So, there should be no risk of failure (passing |
Ok, I just got worried for a second. From my side this is good to go as well |
Hurrah! Thank you @SimonDanisch and @ffreyer :) Do you know when a new Makie version might be registered so that these functions are available again @SimonDanisch? No rush, just want to check. |
Trying to tag in the next day or two! |
Continuation of #3102