aboutsummaryrefslogtreecommitdiff
path: root/drawing/drawing.ha
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2024-04-15 20:19:25 +0100
committerubq323 <ubq323@ubq323.website>2024-04-15 20:19:25 +0100
commitd3eaceebe43cbb6b85125f73fbef3cf2241fe452 (patch)
tree64902701cb24bf0715364e8fddd534de1bc97190 /drawing/drawing.ha
parente19852c958838688481422ed3ddd953d2dcd4309 (diff)
add stroke drawop and refactor drawop ser/deser a bit
Diffstat (limited to 'drawing/drawing.ha')
-rw-r--r--drawing/drawing.ha1
1 files changed, 0 insertions, 1 deletions
diff --git a/drawing/drawing.ha b/drawing/drawing.ha
index 54a877b..063577d 100644
--- a/drawing/drawing.ha
+++ b/drawing/drawing.ha
@@ -100,7 +100,6 @@ export fn circle_hollow(picture: *picture, c: pos, r: i32, color: u32) void = {
};
export fn perform(pictures: []picture, op: op) void = {
match (op) {
- case op_other => abort("oopsy");
case let o: op_circle =>
const x = o.pos.0, y=o.pos.1;
const r = o.radius;