Improve Ellipse Tool (#98)

This commit is contained in:
Paul Kupper
2021-05-04 10:53:00 +02:00
committed by Keavon Chambers
parent 76eb944233
commit c9fea54ec5
7 changed files with 161 additions and 30 deletions

View File

@@ -12,6 +12,16 @@ pub enum Operation {
r: f64,
style: style::PathStyle,
},
AddEllipse {
path: Vec<LayerId>,
insert_index: isize,
cx: f64,
cy: f64,
rx: f64,
ry: f64,
rot: f64,
style: style::PathStyle,
},
AddRect {
path: Vec<LayerId>,
insert_index: isize,