Reduced tool size

Moved tool size buttons on the right, started lasso tool
This commit is contained in:
Nicola
2021-12-27 19:11:59 +01:00
parent 8ee0214fad
commit a52fc647e3
4 changed files with 98 additions and 66 deletions

View File

@ -0,0 +1,29 @@
class LassoSelectionTool extends SelectionTool {
constructor (name, options, switchFunc, moveTool) {
}
onStart(mousePos) {
super.onStart(mousePos);
}
onDrag(mousePos) {
super.onDrag(mousePos);
}
onEnd(mousePos) {
super.onEnd(mousePos);
}
onSelect(mousePos) {
super.onSelect(mousePos);
}
onDeselect(mousePos) {
super.onDeselect(mousePos);
}
drawSelection(mousePos) {
}
}