HWPK4SMPGZMXWXKCVX667676ZWN5Q2XZSTMVAADG7JNRF6XE45RQC S5JIPJPIXRV4TULN6L4IIQ5WB4W3IREYBJZVQXRM6X2KCLGHA47QC IFGAJAF7UWM236QV4NWP2C67TJPQGXNBC2RTZCOWPJUJYYC2MMXAC JCSLDGAH2F6AIY4Z6XM6K4LOMW7EFY3E4NF5YXLMHLTYTX3A4Z3QC OTIBCAUJ3KDQJLVDN3A536DLZGNRYMGJLORZVR3WLCGXGO6UGO6AC ZD63LJ2TGWQQ5KWAX22QUWEYI2X5XUI2UTE4E7LGY26AS7HT2WGQC KCIM5UTVV4KIL7SNRZFOW6FUQHGWAPOGQO4QTVNIWWBWMVG6GYNQC T76KKDWZLQSWMXT2ZE2PPNKBKB4W5M4BW5E6ICHKEBDAUBN6FMZAC elseif lines.current.pending.mode == 'manhattan' thenlocal p1 = lines.current.points[lines.current.pending.p1]local mx,my = coord(x-16), coord(y-lines.current.y)if math.abs(mx-p1.x) > math.abs(my-p1.y) thenlocal j = insert_point(lines.current.points, mx, p1.y)lines.current.pending.p2 = jelselocal j = insert_point(lines.current.points, p1.x, my)lines.current.pending.p2 = jendlocal p2 = lines.current.points[lines.current.pending.p2]love.mouse.setPosition(16+pixels(p2.x), lines.current.y+pixels(p2.y))
elseif shape.mode == 'manhattan' thenlocal p1 = drawing.points[shape.p1]local mx,my = coord(love.mouse.getX()-16), coord(love.mouse.getY()-drawing.y)if math.abs(mx-p1.x) > math.abs(my-p1.y) thenlove.graphics.line(pixels(p1.x)+left,pixels(p1.y)+top, pixels(mx)+left,pixels(p1.y)+top)elselove.graphics.line(pixels(p1.x)+left,pixels(p1.y)+top, pixels(p1.x)+left,pixels(my)+top)end