miDibujo = {
const alto = 350;
const ancho = 700;
const radioCara = alto / 2;
const distOjos = radioCara * 0.4;
const tamOjo = radioCara * 0.2;
const disCara = radioCara * 0.3;
const disBoca = radioCara / ancho;
const miLienzo = d3.create("svg")
.attr("width", ancho)
.attr("height", alto);
const miGrupo =miLienzo.append("g")
.attr("transform", `translate(${ancho / 2},${alto / 2})`)
const cara = miGrupo.append("circle")
.attr("cx", 0)
.attr("cy", 0)
.attr("r", alto /2)
.attr("fill", `rgb(${quemadoEnVacaciones}0,0)`);
const ojoDer=miGrupo.append("circle")
.attr("cx",distOjos)
.attr("cy", -distOjos)
.attr("r", tamOjo)
.attr("fill", "white")
const ojoIzq=miGrupo.append("circle")
.attr("cx",-distOjos)
.attr("cy", -distOjos)
.attr("r", tamOjo)
.attr("fill", "white")
const boca = miGrupo.append("rect")
.attr("x", -distOjos)
.attr("y", disBoca)
.attr("width", distOjos * 2)
.attr("height", hambreAEstahora)
.attr("fill", "black")
return miLienzo.node()
}