ada 0.3.0

2D Primitive Shapes Rendering Library
Documentation
//! A 2D Shapes pixel rendering library in rust. Supported shapes are:
//! * Line2D
//! * Rectangle2D
//! * Ellipse2D
//! * Polygon2D
//! * Bezier2D [Both quadratic and cubic]
//! 
//! # Example
//! 
//! ```ignore
//! use ada::{shape, Canvas};
//! 
//! const WIDTH: usize = 512;
//! const HEIGHT: usize = 512;
//! 
//! pub fn main {
//!     // create a pixel buffer for RGBA values
//!     let mut buffer = vec![0u8; 4 * WIDTH * HEIGHT];
//!     
//!     // create canvas
//!     let mut canvas = Canvas::new(WIDTH, HEIGHT).unwrap();
//!     
//!     // draw line
//!     shape::draw_line2d(50, 50, 200, 300, canvas, &ada::color::WHITE, &mut buffer[..]);
//!     
//!     // draw rectangle
//!     shape::draw_rect2d(50, 100, 100, 150, canvas, &ada::color::RED, &mut buffer[..]); // hollow
//!     shape::draw_rect2d_filled(50, 100, 90, 120, canvas, &ada::color::GREEN, &mut buffer[..]); // filled
//!     
//!     // draw circle
//!     shape::draw_ellipse2d(350, 200, 100, 100, canvas, &ada::color::BLUE, &mut buffer[..]);
//! }
//! ```

// forbid unsafe code
#![forbid(unsafe_code)]

#![feature(test)]
extern crate test;

mod canvas;
pub mod color;
pub mod errors;
pub mod shape;

pub use canvas::Canvas;
pub use color::Color;

/// A type for result generated by Ada
pub type Result<T> = core::result::Result<T, errors::Error>;