{
const app = new PIXI.Application({
antialias: true,
transparent: true,
width,
height: 200,
resolution: devicePixelRatio || 1
});
invalidation.then(() => app.destroy(true, true));
const graphics = new PIXI.Graphics();
app.stage.addChild(graphics);
d3.range(100).forEach(x=>{
d3.range(100).forEach(y=>{
graphics.beginFill(`${color16()}`);
graphics.drawRect((x*10)%width, y%300, 2, 2);
graphics.endFill();
})
})
return Object.assign(app.view, { style: `width: ${width}px` });
}