Created
March 4, 2024 08:36
-
-
Save baku89/1e1fdf88a89c8d28773908b4fae9da15 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
r = ngon([50, 50], 40, 4) | |
r = subdivide(r, 6) | |
r = spawn(r, (seg, i) => | |
arcByPointsAngle( | |
seg.start, | |
seg.point, | |
scalar.sin(/*0*/time * 360/**/) | |
* 180 * (i % 2 ? 1 : -1) | |
) | |
) | |
stroke(r, '', 3) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment