fixing bug in SVG export

upd4.2
Michael Aschauer 2017-12-12 23:40:05 +01:00
rodzic 07d2662b1f
commit 6729a8921c
2 zmienionych plików z 5 dodań i 1 usunięć

Wyświetl plik

@ -2231,3 +2231,7 @@ DialogBoxMorph.prototype.informWithLink = function (
this.popUp(world);
};
IDE_Morph.prototype.toggleStageSize = function (isSmall, forcedRatio) {
};

Wyświetl plik

@ -328,7 +328,7 @@ TurtleShepherd.prototype.toSVG = function() {
')" d="M ' +
(lastStich.x - this.minX) +
' ' +
(lastStich.y - this.minY ) +
(this.maxY - lastStich.y) +
' L ' +
(stitch.x - this.minX) +
' ' +