ytesrev 0.2.7

A presentation tool written in rust, based on sdl2
Documentation
//! Positioning objects on the screen

pub mod layered;
pub mod split;
pub mod stack;

/// In what direction something is facing
pub enum Orientation {
    /// Like this:
    /// ```
    ///    ^
    ///    |
    ///    |
    ///    |
    /// ```
    Vertical,
    /// Like this:
    /// ```
    /// --->
    /// ```
    Horizontal,
}