Crates.io | fbdraw |
lib.rs | fbdraw |
version | 0.1.0 |
source | src |
created_at | 2022-04-11 22:36:55.155116 |
updated_at | 2022-04-11 22:36:55.155116 |
description | put_pixel(x, y, color) without the pain |
homepage | |
repository | https://github.com/nitingupta910/fbdraw |
max_upload_size | |
id | 566148 |
size | 17,665 |
fbdraw provides a single interface put_pixel(x, y, color)
for drawing on the screen. This simple interface makes
it easy to play around with graphics algorithms like curve drawing, without the burden of setting up a window
(with an event loop), setting up GPU pipeline, or managing software buffers, etc.
The coordinate system has origin at the top-left, with X and Y axis running left-to-right and top-to-bottom, respectively.
It is a wrapper for the minifb library.