Skip to content

Commit

Permalink
circle for mining
Browse files Browse the repository at this point in the history
  • Loading branch information
fohristiwhirl committed Oct 6, 2018
1 parent d45169c commit cee463f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion fluorine_renderer.html
Original file line number Diff line number Diff line change
Expand Up @@ -912,7 +912,11 @@
context.fill();
break;
default:
context.fillRect((i + 0.25) * box_width, (j + 0.25) * box_height, box_width / 2, box_height / 2);
// context.fillRect((i + 0.25) * box_width, (j + 0.25) * box_height, box_width / 2, box_height / 2);

context.beginPath();
context.arc((i + b) * box_width, (j + b) * box_height, 0.35 * box_width, 0, 2 * Math.PI, false);
context.fill();
}
}
}
Expand Down

0 comments on commit cee463f

Please sign in to comment.