1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
function drawLine(x1, x2, y1, y2)
{
var line = document.createElementNS(svgNS, "line");
line.setAttribute("x1", x1);
line.setAttribute("x2", x2);
line.setAttribute("y1", y1);
line.setAttribute("y2", y2);
line.setAttribute("stroke-width", 3);
line.setAttribute("stroke", "lightBlue");
background.appendChild(line);
}
/*. . .*/
var mouth = document.createElementNS(svgNS, "polygon");
mouth.setAttribute("points", "0,0 10,-10 10,10");
mouth.setAttribute("fill", "black");
mouth.setAttribute("id", "mouth");
mouth.setAttribute("transform", "translate(" + (px * 20 + 10) + " " + (py * 20 + 10) + ")");
/*. . .*/
background.appendChild(mouth);
|