Skip to content

Instantly share code, notes, and snippets.

@baku89
Last active February 18, 2024 15:24
Show Gist options
  • Save baku89/f64f7313dd8b41169558ec22f7d77263 to your computer and use it in GitHub Desktop.
Save baku89/f64f7313dd8b41169558ec22f7d77263 to your computer and use it in GitHub Desktop.
Demo of Path.arcFromPoints
const start = [80, 10]
const through = [50 + scalar.sin(time * 360) * 30, 50]
const end = [30, 90]
const arc = Path.arcFromPoints(start, through, end)
debug(arc, '#000')
dot(through, 'blue')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment