Monorepo for Aesthetic.Computer
aesthetic.computer
1// Simple 128x128 test - text and circles
2
3export const api = {
4 paint: ({ wipe, ink, write, circle, screen }) => {
5 // Clear to dark blue
6 wipe(0, 0, 100);
7
8 // Write some text
9 ink(255, 255, 255); // White
10 write("HELLO", 10, 20);
11 write("128x128", 20, 40);
12
13 // Draw some circles
14 ink(255, 0, 0); // Red
15 circle(32, 80, 15);
16
17 ink(0, 255, 0); // Green
18 circle(64, 80, 12);
19
20 ink(255, 255, 0); // Yellow
21 circle(96, 80, 10);
22
23 // Blue border circle
24 ink(0, 100, 255);
25 circle(64, 64, 50);
26 }
27};
28
29export const meta = {
30 title: "Simple 128x128 Test",
31 author: "AC System",
32 desc: "Simple test with text and circles",
33 date: "2025.09.16",
34 version: "1.0.0"
35};