Circle In Blocks

Minecraft Circle Generator

Enter a diameter from 1 to 256 blocks to generate a filled or outline Minecraft circle, with the full block grid, a row-by-row width table, and the total block count to build from.

1 to 256.

Total blocks

177

Blocks per quadrant

44

approximate, by symmetry

0123456789101112131401234567891011121314
RowWidth (blocks)
05
19
211
313
413
515
615
715
815
915
1013
1113
1211
139
145

How it's calculated

Every block on the grid is tested against the true circle equation for the diameter you enter. With radius r = diameter / 2 and the grid centered at (r − 0.5, r − 0.5), a block at column x, row z is included when:

(x − center)² + (z − center)² ≤ radius²

For an outline, a second, smaller circle (radius minus the wall thickness) is subtracted from the first, leaving only the ring of blocks between the two. This is the exact same test the Ellipse Generator uses with independent X and Z radii, and the same test the Sphere Generator runs in three dimensions, layer by layer.

Worked example: diameter 15

The calculator's own default. A filled diameter-15 circle uses 177 blocks total, about 44 per quadrant by symmetry. The same diameter as a one-block-thick outline uses only 40 blocks -- the difference is every block that isn't on the circle's edge.

Diameter15
Radius7.5
Filled block count177
Outline block count (thickness 1)40

Type 15 into the generator above and it reproduces this exact grid and these exact counts; that reconciliation is checked in the site's own test suite, not just written here.

Frequently Asked Questions

How does a Minecraft circle generator actually decide which blocks to place?

This tool uses the digital-disk method: it draws a true mathematical circle of the diameter you asked for, then includes every block whose center falls inside that circle. That's the same method any filled-shape rasterizer uses, and it's what produces the stair-step pattern builders recognize from in-game circles -- it isn't hand-drawn or pulled from a lookup table of pre-made shapes.

What diameter should I use for a round tower or arena?

Odd diameters (9, 15, 21, 25...) tend to look slightly more symmetric to the eye because they have a single center row and column; even diameters (8, 16, 20) have no true center block but scale more evenly for structures built in even multiples. Either works -- generate both at your target size and compare the grid before committing blocks.

What's the difference between filled and outline mode?

Filled places every block inside the circle -- a solid disk, good for a floor or platform. Outline places only the ring of blocks at the edge (with adjustable wall thickness), which is what you want for a tower footprint or a circular wall where the interior stays open.

Why does the block count seem to jump around as I change the diameter by 1?

A circle's block count grows roughly with the diameter squared (area scales with radius squared), so each larger diameter adds a full new ring of blocks around the outside -- that ring's size depends on exactly where the true circle boundary crosses the grid, which is why the count doesn't increase by a perfectly even amount each step.

Can I use this for a sphere instead of a flat circle?

Yes -- a sphere is built from stacked circles that shrink toward the top and bottom. Use the Sphere Generator, which runs the same underlying geometry test in three dimensions and slices the result into one circle-shaped layer per row of blocks.

Circle In Blocks is a set of fan-made building tools, not affiliated with Mojang or Microsoft; Minecraft is a trademark of Mojang Studios. Grids are generated from the geometry described above, not pulled from the game itself -- see the Terms.

Every tool