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

Add emath::Rangef and helpers for splitting a Rect (#2978)

* emath: add Rangef helper

* emath: Add Rect splitting helper

* Add helper for interpolating Pos2
This commit is contained in:
Emil Ernerfeldt
2023-05-08 12:20:26 +02:00
committed by GitHub
parent 3d6a15f442
commit faf31365d2
4 changed files with 166 additions and 2 deletions

View File

@@ -30,6 +30,7 @@ pub mod align;
mod history;
mod numeric;
mod pos2;
mod range;
mod rect;
mod rect_transform;
mod rot2;
@@ -41,6 +42,7 @@ pub use {
history::History,
numeric::*,
pos2::*,
range::Rangef,
rect::*,
rect_transform::*,
rot2::*,