A library to draw graphics with pixels in the terminal
To generate libpluto.a
, run:
$ make
To install it so that your compiler can use it directly, run:
# make install
To compile some examples, run:
$ make exp
Pre-compiled library files are available in the releases tab (only for Linux x86-64)
- Include the pluto header in your source file
#include <path to pluto.h> // do #include <pluto.h> if the lib is already installed
- Write your source code. An example program which draws a line: Documentation for the library is in src/pluto.h where functions and structures have been commented
#include <stdlib.h>
#include "pluto.h" /* Change path if needed */
int main()
{
pluto_init_window(); /* Initialize pluto */
pluto_save_screen(); /* Save screen */
for (;;)
{
for (int i = 0; i < _pluto_canvas.cheight; i++)
{
for (int j = 0; j < _pluto_canvas.cwidth; j++)
{
pluto_set_cpix(j, i, rand() % 256, rand() % 256, rand() % 256); /* Set pixel with random colours */
}
}
pluto_write_out(); /* Write to output buffer */
pluto_render(); /* Render the output buffer */
}
pluto_deinit();
return 0;
}
- Link the library generated, for example:
$ gcc -o program program.c -lpluto # install it before or use -L<lib_folder_path>
- You're done! Just run your program now!
Comments in the pluto.h file describe what each function/data structure does
Perlin noise using plutonem
Mandelbrot (examples/mandelbrot.c)
Image rendered using plutonem
A raycaster written with plutonem
- Operating systems: Linux, BSD, MacOS, (idk windows cuz cringe)
- Terminal emulators: XTerm, Termite, Konsole, GNOME-terminal, Alacritty (best performance) and Kitty
- Bug fixes
- Features (don't pull request too many files at once)
- Issue (GitHub issues tab) fixing
- Check if proper fonts are installed. Pluto uses Unicode characters from
U+10240(10)
toU+10495(10)
. I recommend theCascadia Mono
font. - Check if your terminal supports Unicode
- Check your locale, lang (pluto only supports UTF-8 currently). I have my locale set to
en_US.UTF-8
. On Arch Linux, which I use, I would use this command to set it:
# localectl set-locale LANG=en_US.UTF-8
- Open an issue in the issues tab, provide your terminal name, what locale it is set to, and your font