mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-17 23:38:06 +08:00
5 lines
113 B
Rust
5 lines
113 B
Rust
pub enum Operation {
|
|
AddCircle { cx: f64, cy: f64, r: f64 },
|
|
AddRect { x0: f64, y0: f64, x1: f64, y1: f64 },
|
|
}
|