egui 0.1.3

Simple, portable immediate mode GUI library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Graphics module.
//!
//! Handles fonts, textures, color, geometry and tesselation.

pub mod color;
pub mod command;
pub mod font;
pub mod fonts;
pub mod tessellator;
mod texture_atlas;

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