Додати до Chrome
✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
Na figura acima os pontos vermelhos são extremos de segmentos e os verdes controlos.
Como foi desenhado o caminho azul?
Num elemento SVG path o atributo d="M 90 10 L 10 90 L 10 10 Q 70 90 50 50 C 30 10 80 90 90 10 Z".
path
d="M 90 10 L 10 90 L 10 10 Q 70 90 50 50 C 30 10 80 90 90 10 Z"
Com o fragmento de código
this.beginPath();this.moveTo(10, 50);this.quadraticCurveTo(50, 90, 90, 50);this.lineTo(90, 10);this.lineTo(50, 10);this.bezierCurveTo(0, 10, 0, 40, 10, 50);this.closePath();
this.beginPath();
this.moveTo(10, 50);
this.quadraticCurveTo(50, 90, 90, 50);
this.lineTo(90, 10);
this.lineTo(50, 10);
this.bezierCurveTo(0, 10, 0, 40, 10, 50);
this.closePath();
Num elemento SVG path o atributo d="M 90 10 L 10 10 L 10 90 Q 70 90 50 50 C 30 10 80 90 90 10 Z".
d="M 90 10 L 10 10 L 10 90 Q 70 90 50 50 C 30 10 80 90 90 10 Z"
Nenhuma das outras opções.
this.beginPath();this.moveTo(10, 50);this.lineTo(50, 10);this.lineTo(90, 10);this.quadraticCurveTo(50, 90, 90, 50);this.bezierCurveTo(0, 10, 0, 40, 10, 50);this.closePath();
Отримайте необмежений доступ до відповідей на екзаменаційні питання - встановіть розширення Crowdly зараз!