Merge pull request #105 from Simon-Mong/patch-26

defination of reportRandomPosition block
pull/108/head
Michael Aschauer 2021-09-16 10:53:27 +02:00 zatwierdzone przez GitHub
commit 4fce237cfd
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 12 dodań i 0 usunięć

Wyświetl plik

@ -84,3 +84,15 @@ Process.prototype.doGotoObject = function (name) {
this.origDoGotoObject(name);
}
};
Process.prototype.reportRandomPosition = function () {
var thisObj = this.blockReceiver(),
stage;
if (thisObj) {
stage = thisObj.parentThatIsA(StageMorph);
return new List([this.reportBasicRandom(stage.reportX(stage.left()), stage.reportX(stage.right())),
this.reportBasicRandom(stage.reportY(stage.top()), stage.reportY(stage.bottom()))]);
}
};