Factor out some html helpers
This commit is contained in:
parent
d106823e19
commit
8bdd3158ea
2 changed files with 26 additions and 7 deletions
11
island.ts
11
island.ts
|
@ -1,17 +1,14 @@
|
|||
import { canvas2d } from "./lib/html";
|
||||
|
||||
const BLOWUP = 4;
|
||||
const WIDTH = 240;
|
||||
const HEIGHT = 135;
|
||||
|
||||
export function IslandApplet() {
|
||||
const canvas = Object.assign(document.createElement("canvas"), {
|
||||
const [canvas, cx] = canvas2d({
|
||||
width: WIDTH * BLOWUP,
|
||||
height: HEIGHT * BLOWUP,
|
||||
} satisfies Partial<HTMLCanvasElement>);
|
||||
|
||||
const cx = canvas.getContext("2d");
|
||||
if (!cx) {
|
||||
throw new Error("2D rendering context not supported");
|
||||
}
|
||||
});
|
||||
cx.scale(BLOWUP, BLOWUP);
|
||||
|
||||
cx.fillStyle = "red";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue