more chunks, same approach
[?]
Jul 13, 2022, 3:02 PM
W2CQ7YNGXMAXYCGOYBMIH2F6QIL2IOLUKKDAY5PZI62WELVZMUTQCDependencies
- [2]
KTZQ57HVreplace globals with args in a few functions - [3]
BYG5CEMVsupport for naming points - [4]
GSPXUEQO. - [5]
LF7BWEG4group all editor globals - [6]
HOSPP2ANcrisp font rendering - [7]
2Y5GGGJ4correct a mis-named threshold - [8]
BLWAYPKVextract a module - [9]
7JH2ZT3Fadd state arg to Drawing.draw - [10]
VHQCNMARseveral more modules - [11]
LAW2O3NWextract variable Margin_left - [12]
4KC7I3E2make colors easier to edit - [13]
UHB4GARJleft/right margin -> left/right coordinates - [*]
AH744RFRshow when we're naming a point
Change contents
- edit in drawing.lua at line 41[3.1128][15.10]
local px = function(x) return Drawing.pixels(x, State.width)+State.left endlocal py = function(y) return Drawing.pixels(y, State.width)+line.y end - replacement in drawing.lua at line 48
love.graphics.circle('line', Drawing.pixels(p.x, State.width)+State.left,Drawing.pixels(p.y, State.width)+line.y, Same_point_distance)love.graphics.circle('line', px(p.x),py(p.y), Same_point_distance) - replacement in drawing.lua at line 51
love.graphics.circle('fill', Drawing.pixels(p.x, State.width)+State.left,Drawing.pixels(p.y, State.width)+line.y, 2)love.graphics.circle('fill', px(p.x),py(p.y), 2) - replacement in drawing.lua at line 55
local x,y = Drawing.pixels(p.x, State.width)+State.left+5, Drawing.pixels(p.y, State.width)+line.y+5local x,y = px(p.x)+5, py(p.y)+5