canvas = {
const cx = DOM.context2d(width, height);
cx.transform(100,0,0,-100,width/2,height/2);
for (let i = 0; i < 6; ++i) {
cx.beginPath();
cx.lineWidth=.02;
cx.moveTo(-.5, Math.sqrt(3)/2);
cx.lineTo(.5, Math.sqrt(3)/2);
cx.stroke();
cx.beginPath();
cx.lineWidth=.01;
cx.moveTo(-5/6,Math.sqrt(3)/6);
cx.lineTo(5/6,Math.sqrt(3)/6);
cx.stroke();
cx.rotate(Math.PI/3);
}
return cx.canvas;
}