1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-02 06:40:06 -04:00

Move egui::util::History to emath::History (#2329)

* Move egui::util::History to emath::History

It is a nice thing to use outside of egui,
and it is more math-related than gui-related.

* Fix doctest
This commit is contained in:
Emil Ernerfeldt
2022-11-21 14:14:33 +01:00
committed by GitHub
parent f4d8ab9779
commit 1c8cf9e3d5
3 changed files with 5 additions and 4 deletions

View File

@@ -27,6 +27,7 @@ use std::ops::{Add, Div, Mul, RangeInclusive, Sub};
// ----------------------------------------------------------------------------
pub mod align;
mod history;
mod numeric;
mod pos2;
mod rect;
@@ -37,6 +38,7 @@ mod vec2;
pub use {
align::{Align, Align2},
history::History,
numeric::*,
pos2::*,
rect::*,