Minecraft Circle Generator
Generate pixel-perfect circles and ovals for Minecraft, Terraria, or any block-based game. Set diameter, thickness, and block color — then download the template.
Minecraft Circle Size Reference
Common circle sizes and how many blocks you'll need — all at 1-block thickness:
| Diameter | Blocks needed | Stacks of 64 | Use case |
|---|
How to Make a Circle in Minecraft
Minecraft is built entirely from square blocks — so a "circle" is actually a staircase approximation of a circle. The algorithm picks the blocks whose centres are closest to the ideal mathematical circle.
Here's how to use this generator to build a perfect Minecraft circle:
- Set your desired diameter with the slider.
- Adjust thickness for a hollow ring (1 block = outline only) or a filled circle (set to half the diameter).
- Pick a block color that matches your build material.
- Download the PNG and use it as a reference while building in-game.
- Build layer by layer — the template shows exactly which blocks to place.
Tips for large circles
For circles larger than 50 blocks across, use the quadrant axis option to divide the circle into 4 symmetric sections — you only need to follow one quarter and mirror it.
How the Algorithm Works
The generator uses the midpoint circle algorithm — the same technique used in computer graphics since the 1980s. For each x-position, it calculates the y-coordinate on the circle's edge using the equation:
For a ring of thickness t: keep blocks where r_inner ≤ √(x²+y²) ≤ r_outer
Because Minecraft blocks are discrete units, we round each y-value to the nearest integer. The result is the most accurate circle possible at any given diameter — no command blocks or mods required.