22 lines
457 B
TypeScript
22 lines
457 B
TypeScript
import { canvas2d } from "./lib/html";
|
|
|
|
const BLOWUP = 4;
|
|
const WIDTH = 240;
|
|
const HEIGHT = 135;
|
|
|
|
export function IslandApplet() {
|
|
const [canvas, cx] = canvas2d({
|
|
width: WIDTH * BLOWUP,
|
|
height: HEIGHT * BLOWUP,
|
|
});
|
|
cx.scale(BLOWUP, BLOWUP);
|
|
|
|
cx.fillStyle = "red";
|
|
cx.fillRect(0, 0, WIDTH, HEIGHT);
|
|
cx.fillStyle = "blue";
|
|
cx.fillRect(1, 1, WIDTH - 2, HEIGHT - 2);
|
|
|
|
return [canvas];
|
|
}
|
|
|
|
(globalThis as any).IslandApplet = IslandApplet;
|