Update blocks.js

snap7
jmoenig 2021-12-05 15:55:17 +01:00
rodzic 7f313ed540
commit 7ec0f15ea8
1 zmienionych plików z 11 dodań i 0 usunięć

Wyświetl plik

@ -6018,6 +6018,17 @@ HatBlockMorph.prototype.blockSequence = function () {
return result;
};
// HatBlockMorph components - EXPERIMENTAL
HatBlockMorph.prototype.reify = function () {
// private - assumes that I've already been deep copied
var nb = this.nextBlock();
if (!nb) {
return new Context();
}
return nb.reify();
};
// HatBlockMorph drawing:
HatBlockMorph.prototype.outlinePath = function(ctx, inset) {