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

extern crate aurum_color as color;
extern crate aurum_linear as linear;
extern crate aurum_numeric as numeric;

mod bounds;
mod image;
mod vec;

pub use bounds::{Bounds, IsUnbounded, Size1, Size2, Size3, Unbounded};
pub use image::{Bounded, Fill, FromImage, Image, Map, Transform, fill};
pub use vec::{VecImage2};