mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-02 09:40:15 +00:00
eaee89c99f
- improve pixel-cell example. - rustfmt
25 lines
502 B
Rust
25 lines
502 B
Rust
//! based on the proof of concept at ../../src/poc/kittyzapper.c
|
|
|
|
use libnotcurses_sys::*;
|
|
|
|
fn main() -> NcResult<()> {
|
|
let mut dm = NcD::new()?;
|
|
|
|
dm.set_fg_rgb8(100, 100, 100)?;
|
|
dm.set_bg_rgb8(0xff, 0xff, 0xff)?;
|
|
printf!("a");
|
|
dm.set_bg_rgb8(0, 0, 0)?;
|
|
printf!("b");
|
|
printf!(" ");
|
|
printf!(" ");
|
|
dm.set_bg_rgb8(0, 0, 1)?;
|
|
printf!("c");
|
|
printf!(" ");
|
|
printf!(" ");
|
|
dm.set_bg_rgb8(0xff, 0xff, 0xff)?;
|
|
printf!("d");
|
|
printf!("\n");
|
|
|
|
Ok(())
|
|
}
|