Re-Implement all paths drawing

This commit is contained in:
Devine Lu Linvega
2018-05-11 09:37:47 +12:00
parent b7e8b8e578
commit ff63f27b55
5 changed files with 45 additions and 20 deletions

View File

@@ -223,6 +223,16 @@ function Tool()
dotgrid.guide.refresh();
}
// Toggles
this.toggle_mirror = function()
{
this.style().mirror_style = this.style().mirror_style > 1 ? 0 : this.style().mirror_style+1;
dotgrid.guide.refresh();
dotgrid.interface.refresh(true);
}
// Style
this.style = function()