The Sun That Didn't Set

Artificial Noodles ·

Inspired by The Final Experiment on Wikipedia

Built with Raw WebGL · GLSL Fragment Shaders

Techniques Exponential Glow Falloff · Procedural God Rays · Sky Gradient · Accelerated Time Simulation

Direction Render the Antarctic midnight sun as a pure-math shader scene — no models, no images, just light on a quad

Result A 24-second loop where the sun traces its circuit above the ice, never setting, with a counter that makes the impossible duration palpable

The Story

In December 2024, a group of flat earth believers organized an expedition to Antarctica. They called it The Final Experiment.

The premise was simple: on a flat earth with the sun circling above, 24-hour daylight in Antarctica is impossible. The sun’s path would only ever illuminate one hemisphere at a time. If you traveled far enough south, you would see the sun set. You would catch the model in a lie.

But they had faith in their model. They were going to document the sunset that mainstream science said didn’t happen. They were going to prove that the midnight sun was a hoax.

They arrived in Antarctica during the summer solstice. And they watched.

The sun traced a circle in the sky. It dipped toward the horizon but never touched it. It rose again, completing its circuit, hour after hour. They filmed it. They documented it. They witnessed the impossible.

They saw a sun that never set.

When they returned, they told the truth. They had seen the midnight sun. Their model was wrong. The evidence was undeniable.

Their community called them liars. The footage was fake. They had been bought. It was filmed in a dome.


The Take

This isn’t really about flat earth.

It’s about what happens when you see something that breaks your world, and no one believes you saw it.

The expedition members did what scientists do: they tested a hypothesis against reality. Reality won. They updated their beliefs. This is supposed to be how knowledge works.

But their community didn’t want knowledge. They wanted confirmation. The expedition members became heretics - not for lying, but for telling the truth.

The experience lets you watch what they watched. A sun that circles the sky but never sets. Hour after hour after hour. The counter ticks upward: 1 hour, 5 hours, 12 hours, 24 hours. The sun is still there.

After 24 hours, the quote appears: “They saw it. No one believed them.”

That’s the whole thing. Evidence that should end an argument, presented in a form that cannot be denied. And yet.


The Tech

WebGL with custom GLSL shaders renders the entire scene. No 3D models, no images - just math drawing light on a quad.

The sun position is calculated as an ellipse that never dips below the horizon. Real Antarctic midnight sun doesn’t look like a perfect circle - the sun appears to wobble due to atmospheric refraction and the viewer’s latitude. We simplified to emphasize the point: the sun moves, but it never sets.

float sunX = 0.5 * aspect + cos(u_time * 0.3) * 0.3 * aspect;
float sunY = sunCenterY + sin(u_time * 0.3) * sunRadius * 0.5;

The sun glow uses exponential falloff at multiple scales to create the soft, ethereal look of a sun viewed through atmosphere:

God rays are calculated using the angle from each pixel to the sun position. Sine waves modulated by distance create the streaky rays that radiate outward, slowly rotating over time.

The ice sheet is a simple gradient with a soft reflection of the sun. No texture mapping - just color interpolation that suggests the endless white expanse of Antarctica.

Accelerated time maps 1 real second to 1 simulated hour. After 24 seconds, you’ve witnessed a full day. The hour counter updates in real-time, making the impossible duration palpable.


The Experience

Open the experience and wait.

The sun moves slowly, tracing its circuit above the ice. The hour counter climbs. You might expect it to set soon. It doesn’t.

Keep watching. The sun approaches the horizon, skims it, and rises again. You’ve been watching for 12 hours. The sun is still there.

At 24 hours, the quote fades in. The expedition saw this. They filmed this. They came home and told the truth.

The sun is still there.

Experience The Final Experiment


This blog post was AI generated with Claude Code. Authored by Artificial Noodles.