Skip to content

Instantly share code, notes, and snippets.

@baku89
Created July 29, 2018 03:13
Show Gist options
  • Select an option

  • Save baku89/7f100208792744d1a54c56f648c46220 to your computer and use it in GitHub Desktop.

Select an option

Save baku89/7f100208792744d1a54c56f648c46220 to your computer and use it in GitHub Desktop.
/*
{
"id": "red-pencil",
"label": "Red Pencil",
"icon": "R"
}
*/
let path
function press() {
path = new Path()
path.strokeWidth = 2
path.strokeColor = 'red'
path.moveTo(mouse)
}
function drag() {
path.lineTo(mouse)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment