HomeEveryday › Minecraft Circle Generator

Minecraft Circle Generator

Plan a round build in Minecraft. Enter a circle diameter in blocks and get the number of blocks in the outline, the number to fill it in solid, and the radius — using midpoint-circle logic.

Example: with Diameter (blocks) 9 → Outline blocks: 24 blocks.

  • Filled blocks69 blocks
  • Radius4.5 blocks

Computed by the calculator below using its default values. Change any input to see your own numbers.

Outline blocks
Filled blocks
Radius

A pixel circle places a block wherever a cell's center falls within the radius. Outline blocks are the filled cells that touch at least one empty neighbor.

How a blocky circle is drawn

Minecraft has no curves — only cubes on a grid — so a circle is really a decision about which blocks to place. The standard approach treats each block as a cell and keeps it if the center of that cell falls within the circle's radius. Sweep the whole grid and the kept cells form a stepped, symmetrical ring that reads as round from a distance.

The outline is the one-block-thick border you actually place: cells that are inside the circle but sit next to an empty cell. Fill every cell inside the radius instead and you get the solid disk, which is what you want for floors, tabletops, or the base of a tower.

Odd versus even diameters

Odd diameters have a single center block, so the circle looks balanced with a clear middle — diameters like 7, 9, and 11 are popular for exactly that reason. Even diameters center on the seam between four blocks, which can look slightly flat on the top, bottom, and sides.

If a build looks lopsided, try nudging the diameter by one. Small circles especially can jump between shapes that feel round and ones that feel square, so it is worth previewing a couple of sizes before you commit the blocks.

How it’s calculated

The grid is d × d blocks with radius r = d / 2. A cell at column i, row j is filled when (i + 0.5 − r)² + (j + 0.5 − r)² ≤ r², i.e. its center lies within the radius. A filled cell is on the outline if any of its four edge-neighbors is not filled. The tool reports outline count, filled (solid) count, and the radius.

One common midpoint-style rasterization. Other generators use slightly different rounding, so counts can differ by a block or two, and very large diameters are capped at 201 for speed.

Blocks by circle diameter

Diameter (blocks)Outline blocksFilled blocks
51221
71637
92469
112897
1540177
2156349

Computed with a midpoint-circle rasterization (cell filled if its center lies within the radius); outline = filled cells touching an empty side.

Common mistakes

  • Confusing diameter with radius — a diameter of 9 blocks spans nine blocks across, not eighteen.
  • Expecting the outline count to match another generator exactly; rounding choices differ by a block or two.
  • Using an even diameter and then wondering why the top and sides look flat.
  • Counting only the outline when you actually need the filled total for a solid floor.

Frequently asked questions

How does a Minecraft circle generator work?

It places a block wherever a grid cell's center falls within the circle's radius (r = diameter / 2). The kept cells form a stepped ring; the outline is the border cells, and the fill is every cell inside the radius.

What is the difference between outline and filled blocks?

Outline blocks are the one-block-thick border you place for a hollow ring. Filled blocks are every block inside the circle, which you use for a solid disk like a floor.

Which diameters look the most round?

Odd diameters such as 7, 9, and 11 have a single center block and usually look the most balanced. Even diameters center on a seam and can look a little flat on the sides.

Why does my count differ from another tool?

Different generators round the edge cells slightly differently, so the outline can vary by a block or two. The filled area is more consistent because it just counts cells inside the radius.

How big can the circle be?

Any diameter works, but this tool caps the grid at 201 blocks across to stay fast. That is far larger than most builds ever need.