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

Add epaint::RoundedRect primitive (#8440)

This commit is contained in:
Emil Ernerfeldt
2026-08-21 01:33:54 -07:00
committed by GitHub
parent 00dc6e814b
commit f5c9373e26
4 changed files with 173 additions and 21 deletions

View File

@@ -33,6 +33,7 @@ mod margin;
mod margin_f32;
mod mesh;
pub mod mutex;
mod rounded_rect;
mod shadow;
pub mod shape_transform;
mod shapes;
@@ -56,6 +57,7 @@ pub use self::{
margin::Margin,
margin_f32::*,
mesh::{Mesh, Mesh16, Vertex},
rounded_rect::RoundedRect,
shadow::Shadow,
shapes::{
CircleShape, CubicBezierShape, EllipseShape, PaintCallback, PaintCallbackInfo, PathShape,