Need to have an OpenSesame expert by your side 24/7? Subscribe to Sigmund!
随机功能 (random-ext)
random-ext
库以random
的形式提供。此库为随机化提供了许多方便的高级功能。
示例:
从一个五乘五的网格中随机抽取一个位置,绘制八个随机颜色的圆形:
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()
有关概述,请参见: