D3 doesn't know how to morph a globe into a flat map. There's no d3.interpolateProjection() — you get geoOrthographic and geoEquirectangular as separate, incompatible coordinate systems. So the AI Studio export rolled its own: a CustomInterpolator that creates a synthetic d3.geoProjection, takes a blend parameter t from 0 to 1, and for each point on the sphere asks — are you on the front face or the back? Front-face points get a linear interpolation between their orthographic and equirectangular positions. Back-face points emerge from the globe's edge, calculating a start position from the circle's limb using the Pythagorean relationship between the globe radius and the point's y-offset. That's the "unfurling" effect — countries hiding behind the sphere slide out from the rim and settle into their flat-map positions. 344 lines of TypeScript, one Canvas element, zero external physics.