✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Considere o fragmento de programa seguinte:
this.beginPath();
this.moveTo(50, 50);
this.lineTo(90, 10);
this.quadraticCurveTo(10, 10, 10, 50);
this.bezierCurveTo(10, 90, 90, 90, 70, 50);
this.lineTo(50, 50);
this.closePath();
Que caminho obtém?