Skip to content

v0.0.2

Choose a tag to compare

@cyberbit cyberbit released this 07 Dec 03:57
· 5 commits to main since this release

This release adds functions to plot lines and areas with auto-scaling X and Y coordinates, reducing the code required for fullscreen 1-D charts:

-- this:
plotter:chartLineAuto({1,3,5}, colors.white)

-- is equivalent to this:
plotter:chartLine({1,3,5}, 3, 1, 5, colors.white)

1-D Plotting

  • Auto-scaling Lines
  • Auto-scaling Areas