pixelab-core 0.1.0

Core types, traits, and utilities for pixelab-rs
Documentation
mod area;
mod backend;
mod bitmap;
mod color;
mod display_device;
mod error;
mod event;
mod handler;
mod point;
mod widget;

pub use area::Area;
pub use backend::Backend;
pub use bitmap::{Bitmap, BitmapFormat};
pub use color::Color;
pub use display_device::DisplayDevice;
pub use error::PixelabError;
pub use event::{Event, EventReader, InputDevice, Keyboard, Mouse, TouchPad};
pub use handler::Handler;
pub use point::Point;
pub use widget::Widget;