Worked example: the 11-block hollow sphere
This is the size most people try first — big enough to walk inside, small enough to finish in one session. The hollow shell needs 278 blocks (4 × 64 + 22) spread over 11 layers. Here is the entire build plan as a shopping list, bottom to top:
| Layer (bottom → top) | Hollow shell | Solid sphere | Running total (hollow) |
|---|---|---|---|
| 1 | 21 | 21 | 21 |
| 2 | 24 | 45 | 45 |
| 3 | 24 | 69 | 69 |
| 4 | 28 | 89 | 97 |
| 5 | 28 | 97 | 125 |
| 6 | 28 | 97 | 153 |
| 7 | 28 | 97 | 181 |
| 8 | 28 | 89 | 209 |
| 9 | 24 | 69 | 233 |
| 10 | 24 | 45 | 257 |
| 11 | 21 | 21 | 278 |
| Total | 278 | 739 |
Read the shape of that column: 21 at the base, then a plateau of 28 through the middle six layers, then back down. The hollow build costs about 38% of the solid one, which is the real argument for building shells — a solid diameter-11 sphere is 739 blocks of material that nobody will ever see.
The equator layer of that sphere looks like this:
...XXXXX... ..X.....X.. .X.......X. X.........X X.........X X.........X X.........X X.........X .X.......X. ..X.....X.. ...XXXXX...
The thing that surprises everyone: the near-pole bulge
Set the diameter to 15 and step through the layers. The hollow counts run 21, 48, 28, 32, 36 … — the second layer needs 48 blocks, more than the 40 at the equator. That looks wrong and is not.
A hollow sphere is a shell one block thick, and a horizontal slice through a shell cuts a band whose width depends on how steep the surface is at that height. Near the equator the surface is almost vertical, so the slice is a narrow ring. Near the poles the surface is almost horizontal, so the slice is a broad, shallow disc-like band. The widest slices of a hollow sphere are therefore the ones just inside the caps, not the one at the middle. Practically: budget for the layers near the top and bottom being expensive, and expect to place a lot of blocks in what looks like it should be a quick layer.
Sphere sizes and totals
Every total below is generated by the same code as the tool. The last two columns check the counts against the textbook volume formula πd³/6, which is a reasonable estimator for solid builds.
| Diameter | Layers | Hollow shell | Solid | πd³/6 | Solid vs formula |
|---|---|---|---|---|---|
| 7 | 7 | 98 | 179 | 180 | -0.3% |
| 9 | 9 | 186 | 389 | 382 | +1.9% |
| 11 | 11 | 278 | 739 | 697 | +6.0% |
| 13 | 13 | 414 | 1,189 | 1150 | +3.4% |
| 15 | 15 | 530 | 1,791 | 1767 | +1.3% |
| 17 | 17 | 690 | 2,553 | 2572 | -0.8% |
| 21 | 21 | 1,082 | 4,945 | 4849 | +2.0% |
| 25 | 25 | 1,550 | 8,217 | 8181 | +0.4% |
| 31 | 31 | 2,382 | 15,515 | 15599 | -0.5% |
Hollow totals are for a one-block shell. The formula column is a mathematical reference, not a prediction — use the exact counts when gathering materials.
A build order that survives contact with reality
- Mark the equator first, at the right height. It is the widest ring and the one every other layer is measured against. Getting it wrong late is expensive.
- Build downward to the base. Each layer steps inward, so every block you place rests on something. No scaffolding needed for the bottom half.
- Then build upward. The top half overhangs, so place temporary support pillars or scaffolding and remove them at the end.
- Use the flat runs to align each layer. Every slice has straight sections at its top, bottom, left and right. Line those up between consecutive layers and the sphere stays true.
Related tools
- Only need the top half? The Minecraft dome generator gives you the same layer slicing for a half sphere — and its base layer is exactly the flat circle outline of the same diameter.
- Working on a single flat layer, a tower or a floor? Go back to the Minecraft circle generator, which handles flat circles and ovals up to 256 blocks.
- Want to size a sphere before committing? The circle chart shows the equator ring for every diameter from 5 to 32 side by side.
- Building something stretched rather than round? The oval generator handles unequal width and height.