1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-30 13:20:05 -04:00

Refactor: rename Frame to Mesh

This commit is contained in:
Emil Ernerfeldt
2019-03-10 21:00:28 +01:00
parent f2040c6fc5
commit c15768dbf4
6 changed files with 68 additions and 72 deletions

View File

@@ -1,7 +1,7 @@
use crate::{
fonts::TextStyle,
math::{Rect, Vec2},
mesher::Frame,
mesher::Mesh,
};
// ----------------------------------------------------------------------------
@@ -160,7 +160,7 @@ pub enum PaintCmd {
outline: Option<Outline>,
radius: f32,
},
Frame(Frame),
Mesh(Mesh),
Line {
points: Vec<Vec2>,
color: Color,