Skip to content

Instantly share code, notes, and snippets.

@benatkin
Created February 19, 2018 09:30
Show Gist options
  • Save benatkin/c241b3da8a21c0289cc4e9468fed07e4 to your computer and use it in GitHub Desktop.
Save benatkin/c241b3da8a21c0289cc4e9468fed07e4 to your computer and use it in GitHub Desktop.
const curve = (start, control1, control2, end) => {
return [
"M",
start.join(" "),
"C",
control1.join(" "),
control2.join(" "),
end.join(" ")
].join(" ");
}
const line = (start, end) => {
return ["M", start.join(" "), "L", end.join(" ")].join(" ");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment