From fbba31ff7a60205ab633a84ea44bf935427f6291 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Wed, 11 May 2022 22:33:45 -0700 Subject: [PATCH] turn strokes into horizontal and vertical lines --- main.lua | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/main.lua b/main.lua index 71ed3d1..6a8933e 100644 --- a/main.lua +++ b/main.lua @@ -176,6 +176,11 @@ function keychord_pressed(chord) if drawing then convert_line(drawing,i,shape) end + elseif chord == 'C-m' then + local drawing,i,shape = select_shape_at_mouse() + if drawing then + convert_horvert(drawing,i,shape) + end end end @@ -202,5 +207,16 @@ function convert_line(drawing, i, shape) drawing.shapes[i] = {shape[1], shape[#shape]} end +-- turn a stroke into either a horizontal or vertical line +function convert_horvert(drawing, i, shape) + local x1,y1 = shape[1].x, shape[1].y + local x2,y2 = shape[#shape].x, shape[#shape].y + if math.abs(x1-x2) > math.abs(y1-y2) then + drawing.shapes[i] = {{x=x1, y=y1}, {x=x2, y=y1}} + else + drawing.shapes[i] = {{x=x1, y=y1}, {x=x1, y=y2}} + end +end + function love.keyreleased(key, scancode) end