Need to have an OpenSesame expert by your side 24/7? Subscribe to Sigmund!
Zufallsfunktionen (random-ext)
Die random-ext
Bibliothek ist als random
verfügbar. Diese Bibliothek bietet viele praktische, höherstufige Funktionen für Zufallsverteilungen.
Beispiel:
Zeichnen Sie acht Kreise mit einer zufälligen Farbe und einer Position, die zufällig aus einem fünf mal fünf Raster ausgewählt wird:
let positions = xy_grid(5, 50)
positions = random.subArray(positions, 8)
const cnv = Canvas()
cnv.fixdot()
for (const [x, y] of positions) {
cnv.circle({x: x, y: y, r: 20, fill: true, color: random.color()})
}
cnv.show()
Für einen Überblick, siehe: