WGLMakie is a WebGL backend for the Makie.jl plotting package, implemented using Three.js.

Read the docs for Makie and it's backends here

Usage

using WGLMakie
scatter(rand(4))

In the REPL, this will open a browser tab, that will refresh on a new display. In VSCode, this should open in the plotpane. You can also embed plots in a JSServe webpage:

using JSServe
app = App() do session, request
    return DOM.div(
        DOM.h1("Some Makie Plots:"),
        meshscatter(1:4, color=1:4),
        meshscatter(1:4, color=rand(RGBAf, 4)),
        meshscatter(1:4, color=rand(RGBf, 4)),
        meshscatter(1:4, color=:red),
        meshscatter(rand(Point3f, 10), color=rand(RGBf, 10)),
        meshscatter(rand(Point3f, 10), marker=WGLMakie.Pyramid(Point3f(0), 1f0, 1f0)),
    )
end
isdefined(Main, :server) && close(server)
server = JSServe.Server(app, "127.0.0.1", 8082)

Sponsors

Förderkennzeichen: 01IS10S27, 2020