-
-
Notifications
You must be signed in to change notification settings - Fork 362
Open
Labels
Integrationwith other packageswith other packagesWGLMakieThis relates to WGLMakie.jl, the Web-based WebGL backend for Makie.This relates to WGLMakie.jl, the Web-based WebGL backend for Makie.bugspecific environmentrelated to a specific environment/configuration, e.g. headless, ssh, vscode, etcrelated to a specific environment/configuration, e.g. headless, ssh, vscode, etc
Description
- are you running newest version? Julia 1.9.2, WGLMakie 0.8.11, IJulia 1.24.2
- can you reproduce the bug with a fresh environment ? (
]activate --temp; add Makie) yes - What platform + GPU are you on? M1 Mac. v12.5.
MWE Steps:
- Run jupyter-lab
using WGLMakie
Makie.inline!(true)
f = Figure(resolution = (800, 800))
Axis(f[1, 1], backgroundcolor = "black")
xs = LinRange(0, 2pi, 20)
ys = LinRange(0, 3pi, 20)
us = [sin(x) * cos(y) for x in xs, y in ys]
vs = [-cos(x) * sin(y) for x in xs, y in ys]
strength = vec(sqrt.(us .^ 2 .+ vs .^ 2))
arrows!(xs, ys, us, vs, arrowsize = 10, lengthscale = 0.3,
arrowcolor = strength, linecolor = strength)
f
carstenbauer
Metadata
Metadata
Assignees
Labels
Integrationwith other packageswith other packagesWGLMakieThis relates to WGLMakie.jl, the Web-based WebGL backend for Makie.This relates to WGLMakie.jl, the Web-based WebGL backend for Makie.bugspecific environmentrelated to a specific environment/configuration, e.g. headless, ssh, vscode, etcrelated to a specific environment/configuration, e.g. headless, ssh, vscode, etc
