Skip to content

JuliaJSXGraph/JSXGraph.jl

Repository files navigation

JSXGraph.jl

CI Stable Documentation Dev Documentation codecov

A Julia package for creating interactive geometry, function plotting, and data visualization using JSXGraph.

Installation

using Pkg

Pkg.add("JSXGraph")

Quick Start

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)

Documentation

  • Stable — documentation for the latest tagged release
  • Dev — documentation for the current main branch

License

MIT — see LICENSE for details.

About

A Julia package for creating interactive geometry, function plotting, and data visualization using JSXGraph.

Topics

Resources

License

Contributing

Stars

Watchers

Forks

Packages

 
 
 

Contributors