I want to redraw this Body Weight
scale in bitmap editor pixel by pixel. As I understood this is a logarithmic scale, but what is the logarithm - binary or decimal?
How to calculate distance between lines in pixels. Maybe it's better to count from 1 to 70 and than reverse it.
values = []
for kilos, value in enumerate(range(1, 71)):
// some logic
values.append([kilos, pixels])
reverse(values)