Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -333,11 +333,13 @@ function draw() {
|
|
| 333 |
const offset = Math.max(40, radius*0.28 + len*0.12);
|
| 334 |
const ux = mx/len, uy = my/len;
|
| 335 |
loopGroup.append("path")
|
| 336 |
-
.attr("d",
|
| 337 |
.attr("fill", "none")
|
| 338 |
-
.attr("stroke", "#
|
| 339 |
-
.attr("stroke-width",
|
| 340 |
-
.attr("opacity",
|
|
|
|
|
|
|
| 341 |
});
|
| 342 |
|
| 343 |
// --------------------------------------------------------------
|
|
|
|
| 333 |
const offset = Math.max(40, radius*0.28 + len*0.12);
|
| 334 |
const ux = mx/len, uy = my/len;
|
| 335 |
loopGroup.append("path")
|
| 336 |
+
.attr("d", path)
|
| 337 |
.attr("fill", "none")
|
| 338 |
+
.attr("stroke", "#9b59b6") // bright violet
|
| 339 |
+
.attr("stroke-width", 4.5) // thicker so stands out
|
| 340 |
+
.attr("opacity", 1)
|
| 341 |
+
.attr("stroke-linecap","round")
|
| 342 |
+
.attr("stroke-linejoin","round");
|
| 343 |
});
|
| 344 |
|
| 345 |
// --------------------------------------------------------------
|