desenho = {
let r = (tam / (0.5*Math.sqrt(2)+1));
let x = 100+2*tam - r;
let y = 100 + r;
let circulos = "";
for (let i = 0; i < 200; i += 30) {
circulos += `<circle r=10 cx=200 cy=${i+100} />`
}
return html`<svg width=600 height=400 style="border:1px solid gray">
<rect x=100 y=100 width=${2*tam} height=${2*tam} fill=cyan />
<circle cx=${x} cy=${y} r=${r} fill=${cor} />
${circulos}
<line x1=100 x2=${100+2*tam} y1=100 y2=${100+2*tam} stroke="black" stroke-width="1"/>
</svg>`
}