git404hub

what is infiniroom fr?

victortaelin/infiniroom — explained in plain English

Analysis updated 2026-05-18

16TypeScriptAudience · developerComplexity · 3/5Setup · easy

tl;dr

A browser experience with one continuous 40-second zoom animation from a room down to a quark, spanning seventeen orders of magnitude.

vibe map

mindmap
  root((Infinizoom))
    What it does
      Continuous zoom ride
      Room to quark scale
    Tech stack
      TypeScript
      three.js
      Bun
    Use cases
      Scale visualization demo
      Deterministic render reference
    Audience
      Creative developers
      Graphics tinkerers

Code map

Detail Auto

An interactive map of this repo's files and how they connect — its source is parsed live in your browser. Click Visualize to build it.

filefunction / class

what do people make with this?

VIBE 1

Experience a continuous zoom animation from everyday scale down to subatomic scale.

VIBE 2

Study how a deterministic, state-driven rendering pipeline is structured for a scripted 3D scene.

VIBE 3

Use as a reference for organizing per-level render functions that mirror a scene's traversal order.

what's the stack?

TypeScriptthree.jsBun

how it stacks up fr

victortaelin/infiniroomachrefelouafi/basicproceduralbuildingacoyfellow/tuiport
Stars161616
LanguageTypeScriptTypeScriptTypeScript
Setup difficultyeasymoderatemoderate
Complexity3/53/54/5
Audiencedeveloperdeveloperdeveloper

Figures from each repo's GitHub metadata at analysis time.

how do i run it?

Difficulty · easy time til it works · 5min

in plain english

Infinizoom is a browser experience built around one continuous zoom animation, about 40 seconds long, that takes you from a room, into a laptop, through its processor down to individual components, and all the way to the scale of a quark, spanning seventeen orders of magnitude in scale. At one point during the ride, near the laptop, the path forks and you can choose to head into the screen instead, traveling through the display panel, down to a single pixel, through the OLED layers, to an individual light emitting molecule, before rejoining the same path down toward the atomic scale. You control it with the W and S keys to ride forward and backward along the path, A and D to pick a direction at the fork, and the mouse to look around, with a click to lock the pointer for full 360 degree looking. There are also debug options that let you jump the camera to a specific point in the timeline, choose a fork branch, and set the mouse position directly through the page address, along with a script that can take automated screenshots at specific points for testing. Under the hood, the whole thing is designed around a very small piece of state, just the current time in the sequence, which fork was taken, and the raw input, with every frame calculated fresh from that state and the system clock rather than accumulated over time. The rendering code is organized as one function per file for each level of the zoom, called directly by its parent, so the order in which functions call each other mirrors the order you travel through the scene. A separate file holds shared constants used both for drawing the scene and for planning the path through it, and everything on screen is drawn using instanced object pools for performance. To run it, you start a local server with a single bun command and open the page in a browser. The rendering library, three.js, is loaded from a public content delivery network rather than installed as a dependency, and is the only outside resource the project needs.

prompts (copy fr)

prompt 1
Explain how the fork mechanic in Infinizoom lets the camera switch between the room path and the screen path.
prompt 2
Help me add a new zoom level to this project's per-file render pipeline.
prompt 3
Show me how the deterministic state design in src/track.ts avoids float drift across scales.

Frequently asked questions

what is infiniroom fr?

A browser experience with one continuous 40-second zoom animation from a room down to a quark, spanning seventeen orders of magnitude.

What language is infiniroom written in?

Mainly TypeScript. The stack also includes TypeScript, three.js, Bun.

How hard is infiniroom to set up?

Setup difficulty is rated easy, with roughly 5min to a first successful run.

Who is infiniroom for?

Mainly developer.

peek the repo → explain another one

This repo across BitVibe Labs

double-check against the repo, no cap.