Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (c) 2017, Marty Mills <daggerbot@gmail.com>
// This software is available under the terms of the zlib license.
// See COPYING.md for more information.

extern crate dnum;
extern crate dvec;
extern crate try_from;

mod bounds;
mod image;
mod vec_image;

pub use bounds::{Boundless, Bounds, Size2};
pub use image::{Bounded, Fill, Image, Render, fill};
pub use vec_image::{VecImage2};

/// Integer coordinate type.
pub type Coord = i32;