/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/javascript/js-501-47-001/main.js
14 строк
283 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
ctx.beginPath(); ctx.moveTo(20, 20); ctx.lineTo(100, 20); ctx.lineTo(100, 80); ctx.closePath(); ctx.strokeStyle = 'rgb(255, 0, 0)'; ctx.lineWidth = 3; ctx.stroke(); ctx.fillStyle = 'rgb(0, 0, 255)'; ctx.fill(); ctx.beginPath(); ctx.arc(200, 150, 100, 0, Math.PI * 2); ctx.stroke();