Update index.html
Browse files- index.html +1 -1
index.html
CHANGED
|
@@ -271,7 +271,7 @@
|
|
| 271 |
ctxMask.fillStyle = "rgba(0, 255, 255, 1)";
|
| 272 |
for(const pt of points) {
|
| 273 |
ctxMask.beginPath();
|
| 274 |
-
ctxMask.arc(pt[0] * canvas.width, pt[1] * canvas.height,
|
| 275 |
ctxMask.fill();
|
| 276 |
}
|
| 277 |
ctxMask.restore();
|
|
|
|
| 271 |
ctxMask.fillStyle = "rgba(0, 255, 255, 1)";
|
| 272 |
for(const pt of points) {
|
| 273 |
ctxMask.beginPath();
|
| 274 |
+
ctxMask.arc(pt[0] * canvas.width, pt[1] * canvas.height, 3, 0, 2 * Math.PI);
|
| 275 |
ctxMask.fill();
|
| 276 |
}
|
| 277 |
ctxMask.restore();
|