1
0
Fork
You've already forked termplot
0
simple terminal equation plotter
  • C 99.8%
  • Makefile 0.2%
2026年02月26日 00:36:45 +07:00
arena.h 2026年02月25日 02:48:02 +07:00
LICENSE 2026年02月25日 02:48:02 +07:00
main.c feat: add colors 2026年02月26日 00:36:45 +07:00
Makefile 2026年02月25日 02:48:02 +07:00
README 2026年02月25日 02:48:02 +07:00
tinyexpr.c 2026年02月25日 02:48:02 +07:00
tinyexpr.h 2026年02月25日 02:48:02 +07:00

termplot
PREREQUISITES
 - ncurses
 - libuv
TO COMPILE
 $ make
this program is quite limited. you can only write
functions that depend on X. so the `sin(y)' function
will NOT work as you'd expect.
the reason is that it's much simpler this way, and
thus limits the scope drastically. unfortunately,
no way to draw circles either. `x^2 + y^2 = 1' will
NOT work.
all equations take form of y = <whatever you put in>
that means that you can't write something like
`y = 1'. you need to write just `1'.
to save the expression, press ENTER while in edit
mode. check the top right corner of the edit mode
to see if there are any errors. if there is one,
it'd show up as [!]. navigate to stat mode to see
it.