-
-
Notifications
You must be signed in to change notification settings - Fork 312
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
allow transformation functions in Cycled #2404
Conversation
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))
|
I can't think of many more sane applications then adding alpha. Therefore, could this be solved by: #2900? |
@SimonDanisch, how can one use #2900 to solve this? I'm using CairoMakie v0.12.2 and getting the same errors as in #1629:
Is there any fix for this? |
Closing, since |
Description
Fixes #1629
Allows to pass any kind of transformation function for
Cycled
, this can be used to give colors a different alpha, for example.Type of change
Delete options that do not apply:
Example
Checklist