From fa4b069c1fa23699df146b0ac7a40538f68cf937 Mon Sep 17 00:00:00 2001 From: Gubolin Date: Sat, 4 Oct 2014 13:37:29 +0200 Subject: leave a mark on pen down (fix #209) --- morphic.js | 1 + 1 file changed, 1 insertion(+) diff --git a/morphic.js b/morphic.js index 4e18482..b8b176c 100644 --- a/morphic.js +++ b/morphic.js @@ -4097,6 +4097,7 @@ PenMorph.prototype.forward = function (steps) { PenMorph.prototype.down = function () { this.isDown = true; + this.drawLine(this.center(), this.center()); }; PenMorph.prototype.up = function () { -- cgit v1.3.1