Skip to content

Commit 6655282

Browse files
authored
1 parent 3aa3925 commit 6655282

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gemini-bbox.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@
171171

172172
// Y-axis labels and ticks
173173
for (let i = 0; i <= 1000; i += 100) {
174-
const y = 20 + (1000 - i) / 1000 * image.height;
174+
const y = 20 + i / 1000 * image.height;
175175
ctx.fillText(i.toString(), 75, y + 5);
176176
ctx.beginPath();
177177
ctx.moveTo(75, y);

0 commit comments

Comments
 (0)