26 个版本
0.4.1 | 2024 年 7 月 13 日 |
---|---|
0.3.14 | 2024 年 4 月 9 日 |
0.3.13 | 2024 年 1 月 17 日 |
0.3.12 | 2023 年 11 月 21 日 |
#174 in 图形 API
每月 125 次下载
在 6 crates 中使用
5MB
115K SLoC
PlayDate 图形 API
基于 playdate-sys 构建的图形 API 高层。
用法
extern crate playdate_graphics;
use playdate_graphics::{bitmap, color, text, BitmapFlipExt};
// create and draw black rect:
let image = bitmap::Bitmap::new(100, 100, color::Color::BLACK).unwrap();
image.draw(50, 100, bitmap::BitmapFlip::Unflipped);
// draw simple line of text:
let str = CStr::from_bytes_with_nul(b"Simple Text\0").unwrap();
text::draw_text_cstr(str, 40, 40);
更多内容请参阅 示例。
该软件未获得 Panic 的赞助或支持。
lib.rs
:
Playdate 图形 API