{
let ctx = DOM.context2d(width, height);
const canvas = ctx.canvas;
ctx.fillStyle = '#303A8F';
ctx.fillRect(0, 0, width, height);
let cx = width / 2;
let cy = height / 2;
let sp = speed / 1000;
const color = d3.scaleSequential([1, nbr_dots], d3.interpolatePlasma);
ctx.fillRect(0, 0, width, height);
for (let i = 1; i < nbr_dots; i++) {
let r = i / nbr_dots;
let a = r * (Math.PI * 2);
let d = Math.sin(tm * sp * i * 1.2) * rose_rad;
let x = cx + Math.cos(a) * d;
let y = cy + Math.sin(a) * d;
ctx.fillStyle = color(i);
ctx.beginPath();
ctx.arc(x, y, dot_rad, 0, 2 * Math.PI, false);
ctx.fill();
}
yield canvas;
}