drawing poly

This commit is contained in:
Fedor Katurov 2020-01-09 12:58:11 +07:00
parent 7bdf07cae5
commit c166eee586
5 changed files with 2841 additions and 3429 deletions

View file

@ -182,6 +182,11 @@ export class InteractivePoly extends Polyline {
this.is_drawing = true;
this.drawing_direction = "backward";
this.startDrawing();
},
stop: () => {
this.stopDragHinting();
this.is_drawing = false;
this.stopDrawing();
}
};