✅ 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, 10);
this.quadraticCurveTo(0, 50, 50, 90);
this.lineTo(70, 90);
this.bezierCurveTo(90, 100, 90, 0, 70, 10);
this.lineTo(50, 10);
this.closePath();
Que caminho obtém?