Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sagacious-software/freaking
Simple 2D drawing library
https://github.com/sagacious-software/freaking
2d ansi ansi-c bitmap bitmaps buffer buffers c c89 c90 draw drawing graphics pixel pixels render rendering vector vectors
Last synced: about 1 month ago
JSON representation
Simple 2D drawing library
- Host: GitHub
- URL: https://github.com/sagacious-software/freaking
- Owner: Sagacious-Software
- License: mit
- Created: 2020-11-02T03:06:43.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-22T23:35:32.000Z (about 4 years ago)
- Last Synced: 2024-10-31T01:42:13.595Z (3 months ago)
- Topics: 2d, ansi, ansi-c, bitmap, bitmaps, buffer, buffers, c, c89, c90, draw, drawing, graphics, pixel, pixels, render, rendering, vector, vectors
- Language: C
- Homepage:
- Size: 13.7 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Freaking
Simple 2D graphics drawing library!
## Build
Build the library and the demos by running this in the root of the repository:
```bash
meson builddir --buildtype release
cd builddir
meson compile
```(Optionally do `--buildtype debug` instead if you would like to keep debugging information and turn optimizations off, e.g., if you want to do development.)
## Try the demos
Try the demos by running this in the build directory:
```bash
meson test
```## Install
And when you are ready to install do this in the build directory:
```bash
meson install
```## TODO
### General
- fonts, at least bitmaps for now
- rect and vector path fill and stroke
- make transforms used### Implementation
- software rendering implementation
- opengl implementation