MCPcopy Index your code
hub / github.com/forloopcodes/contextplus / Column

Interface Column

landing/src/components/AsciiTerminal.tsx:10–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8const FONT = '12px monospace';
9
10interface Column {
11 x: number;
12 y: number;
13 speed: number;
14 chars: number[];
15 len: number;
16 phase: number;
17}
18
19function rand(min: number, max: number) {
20 return Math.random() * (max - min) + min;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected