egui 0.1.1

Simple, portable immediate mode GUI library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod color;
pub mod command;
pub mod font;
pub mod fonts;
pub mod mesher;
mod texture_atlas;

pub use {
    color::Color,
    command::{LineStyle, PaintCmd},
    fonts::{FontDefinitions, Fonts, TextStyle},
    mesher::{PaintBatches, PaintOptions, Path, Triangles, Vertex},
    texture_atlas::Texture,
};