ytesrev/layout/mod.rs
1//! Positioning objects on the screen
2
3pub mod layered;
4pub mod split;
5pub mod stack;
6
7/// In what direction something is facing
8pub enum Orientation {
9 /// Like this:
10 /// ```
11 /// ^
12 /// |
13 /// |
14 /// |
15 /// ```
16 Vertical,
17 /// Like this:
18 /// ```
19 /// --->
20 /// ```
21 Horizontal,
22}