oliframe 0.3.9

Add a simple border to one or more images
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Geometry module.
mod aspect_ratio;
mod border;
mod margins;
mod point;
mod relative_position;
mod size;

pub use aspect_ratio::AspectRatio;
pub use border::Border;
pub use margins::Margins;
pub use point::Point;
pub use relative_position::*;
pub use size::Size;