A Julia package for creating interactive geometry, function plotting, and data visualization using JSXGraph.
using Pkg
Pkg.add("JSXGraph")using JSXGraph
# Create a board with a point and a line
b = board("box", xlim=(-5, 5), ylim=(-5, 5))
A = point(1, 2; name="A")
B = point(-3, -1; name="B")
l = line(A, B)
push!(b, A, B, l)
# Display as HTML
html(b)- Stable — documentation for the latest tagged release
- Dev — documentation for the current
mainbranch
MIT — see LICENSE for details.