Created
July 29, 2018 03:13
-
-
Save baku89/7f100208792744d1a54c56f648c46220 to your computer and use it in GitHub Desktop.
Custom Tool for https://s.baku89.com/pentool
This file contains hidden or 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
| /* | |
| { | |
| "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