How to use this generator
Enter a width (and height, if you want an oval) and the circle renders instantly. Switch between Outline (just the perimeter), Filled (every block inside), or Thick wall (a perimeter that's 1–10 blocks thick). Turn on Row Counts to see how many blocks are in each horizontal row — the single fastest way to build large circles without miscounting by eye. Turn on the Chunk Grid if you're building a structure that needs to align to Minecraft's 16-block chunk boundaries. Hover any block to see its in-game coordinates (you need to enter your centre coordinates in the Advanced panel first). When you have a configuration you like, copy the share link to send it to a friend or paste it back into your own browser later — the entire setup is encoded in the URL.
How to make a perfect circle in Minecraft
The short answer: you can't. Minecraft is built from cubic blocks, and a mathematically perfect curve through a square grid is impossible. What every "circle generator" actually produces is an approximation: the same trick your monitor uses to draw circles out of square pixels, applied to building blocks. The approximation gets visually smoother as the diameter grows — a 6-block circle looks blocky; a 60-block circle reads as round; a 600-block circle is indistinguishable from a true circle at most viewing distances.
The practical workflow most experienced builders use:
- Choose your diameter. Bigger circles are easier to make smooth, so don't go small if you don't have to.
- Mark the center block in your world with a temporary marker (a glass block, a torch, anything you'll demolish later).
- Build the four cardinal axes out from the center — a plus-sign extending to the perimeter in each direction. Each axis arm is length
(diameter − 1) / 2for odd diameters, ordiameter / 2for even. - Place the four cardinal-edge blocks of the circle (the topmost, bottommost, leftmost, rightmost). These are the "corners" of the four quadrants.
- Fill in one quadrant following the template above. Use Quadrant View if it helps focus.
- Mirror the quadrant three times to complete the circle. Counting blocks along the cardinal axes is the only place an off-by-one error matters; everything else self-corrects from the four anchored corners.
The "X method" is a variant that some tutorials teach: instead of building cardinal axes, build a diagonal X from the centre outward. It's mathematically equivalent and a matter of preference. The cardinal-axis method is easier to verify against a template, which is why most circle generators (including this one) display the cardinal axes by default via the centre crosshair.
Pixel circle chart and template guide
The generator above doubles as a circle chart — tap any diameter in the reference chart below or type a custom size to see the exact pixel circle template for that diameter. Each template shows row-by-row block counts, so you can use it as a standalone circle guide without toggling between layers. For quick builds, many players screenshot or print the template and tape it beside their monitor while placing blocks in-game.
Why blocky circles work (the math)
Your screen does it every day. A pixel is a square; circles on screens are illusions. The illusion works because the human visual system smooths edges at small sizes — what looks "jagged" up close looks "round" at a distance. The same principle applies to a Minecraft circle: viewed from far enough away, the blocky perimeter reads as a curve. This is why a 60-block circle looks great from the ground but a 6-block circle looks like a fancy plus-sign.
The algorithm under the hood is a variant of midpoint circle rasterisation — a technique from 1960s computer graphics that decides which pixel/block belongs to a circle by testing whether its centre lies inside the mathematical curve. The "closest corner" mode swaps that test for "is the block's corner closest to the centre inside the curve," which produces a slightly tidier outline on even-diameter circles. Same family of algorithms; minor variation in the rounding rule.
Beyond Minecraft: where this tool also works
Every block-based or grid-based game uses the same math, so the same templates apply. Specific cases people use this for:
- Terraria — 2D blocks, identical circle math. Build round arenas, circular biome borders, decorative wall medallions.
- Stardew Valley — farm layouts where sprinkler ranges or scarecrow ranges define functional radii. Quadrant View is especially useful here.
- Space Engineers — small-grid and large-grid block circles for spaceship hulls, station docking rings.
- Pixel art canvases (PixilArt, wplace, GIMP/Photoshop pixel mode) — drawing circles by hand in pixel art is harder than it looks; templates save hours.
- LEGO and physical-block builds — yes, people use these templates to lay out LEGO floor tiles or Plus-Plus block constructions.
- Tabletop and miniature gaming — circular battlemats, dungeon room layouts on grid paper.
The chunk-grid overlay is Minecraft-specific (chunks are a Minecraft concept), but every other feature is game-agnostic.
Tips for very large circles
Once you go past about 200 blocks in diameter, a few habits become essential:
- Quadrant View is your friend. Build one quarter on a template, then mirror three times. You only have to be correct once.
- Row counts become non-negotiable. Counting 47 blocks in a row by eye is a recipe for off-by-one errors that ripple through the whole circle.
- Chunk-grid overlay helps with two things on giant builds: aligning to chunk boundaries (useful for redstone clocks, mob farms, and render-distance reasoning), and giving you natural "checkpoints" every 16 blocks where you can verify you haven't drifted.
- The Stacks readout — the "X stacks + Y" display in the block-count line — tells you how many full inventory stacks of building material you need. A 200×200 filled circle is about 31,400 blocks, or 490 stacks. Knowing this before you start means you can travel out and gather (or ender-chest-shuttle) the right amount in one trip.
- Use temporary markers. Build the outline in a contrasting material first (cobble, glass), verify the shape from the air, then swap to the final material. The cost of fixing a wrong outline before it's "real" is one bucket of water; the cost of fixing it after you've added the inner detail is hours.
Common circle sizes — a reference chart
Tap any size to load it in the generator above.
Related tools
Part of the Minecraft cluster on Done In Browser.