Skip to main content
Module

x/skia_canvas/bench/draw.mjs

Fast HTML Canvas API implementation for Deno using Skia.
Go to Latest
File
export function draw(ctx) { ctx.lineWidth = 10; ctx.strokeStyle = "#03a9f4"; ctx.fillStyle = "#03a9f4";
// Wall ctx.strokeRect(75, 140, 150, 110);
// Door ctx.fillRect(130, 190, 40, 60);
// Roof ctx.beginPath(); ctx.moveTo(50, 140); ctx.lineTo(150, 60); ctx.lineTo(250, 140); ctx.closePath(); ctx.stroke();}