Blocks are cubes on a fixed grid, so a true circle is impossible to build. What you can build is the best approximation — the set of grid cells whose centres fall inside a circle of a given radius. Getting that set right by eye is much harder than it looks, especially at larger diameters, and the usual result is a shape with flat spots and a visible seam where the four quadrants fail to match.
This Minecraft circle generator from Arb Digital produces the pattern directly, along with the block counts you need before you start mining. It handles odd and even diameters, ellipses with different width and height, and horizontal slices of a sphere, and it draws the result as a grid you can read row by row.
What This Circle Generator Does
Pick a shape and a size, and the tool returns a grid diagram plus a text version using hashes and dots. The counts panel gives the grid dimensions, the number of blocks in the outline, the number in a completely filled version, and the widest row — which tells you how much space the build actually needs. Sphere-layer mode takes a sphere diameter and a layer number and gives you the circle for that horizontal slice, which is how you build a dome or a globe one course at a time.
Boundaries with the closest tools on the site. The circle calculator works in continuous geometry — area, circumference, radius — with no grid. The circle equation calculator handles the algebraic form. The nether portal calculator converts coordinates between dimensions. The cross stitch calculator sizes a gridded design in stitches and fabric count rather than generating one. This page is the rasterisation itself: turning a circle into cells.
How to Use It
- Choose the shape. Outline for walls, rings and towers; filled for floors, platforms and roofs.
- Set the diameter in blocks. This is the full width, not the radius.
- For an ellipse, set the height separately. Anything from a slight oval to a long narrow shape works.
- For a sphere, pick the layer. Layer 1 is the bottom; the middle layer is the widest, and the pattern is symmetrical above and below it.
- Read the counts before mining. The filled figure is what a solid floor costs; the outline figure is what a single-thickness wall costs per course.
The Formula / How It's Calculated
Each cell is tested at its centre. For a grid of width w and height h, cell (x, y) is inside the shape when ((x + 0.5 − w/2)² ÷ (w/2)²) + ((y + 0.5 − h/2)² ÷ (h/2)²) ≤ 1. For a circle, w and h are equal and this reduces to the ordinary distance test. Using the cell centre rather than its corner is what makes the result symmetrical for both odd and even diameters, which is where hand-drawn attempts usually go wrong.
The outline is derived from the filled set: a cell belongs to the outline if it is inside the shape and at least one of its four orthogonal neighbours is not. That produces a single-thickness ring with no diagonal gaps, which is what you want for a wall you can actually walk along.
Sphere layers use the same test with a radius that shrinks away from the middle. For a sphere of diameter D, layer k has an effective radius of √((D/2)² − (k + 0.5 − D/2)²), which is the chord of the sphere at that height. A 15-block sphere therefore has a widest layer of 15 blocks in the middle and a top and bottom layer of about 5.
Worked example. A 15-block circle contains 177 filled blocks and 40 in the outline, with a widest row of 15. Check the filled figure against continuous geometry: the area of a circle of radius 7.5 is π × 7.5² = 176.7, which rounds to 177, so the rasterisation is behaving exactly as it should. A 16-block circle gives 208 filled and 44 outline, against a continuous area of π × 8² = 201.1 — slightly more, because an even grid captures a little extra at the edges.
Why the Outline Count Is Less Than the Circumference
The circumference of a 15-block circle is π × 15 = 47.1, but the outline is only 40 blocks. That is not an error. The ring moves diagonally in places, and a diagonal step covers about 1.41 blocks of perimeter distance while costing one block. Aggregate enough diagonal steps and the block count falls below the geometric perimeter.
This is the same effect that makes diagonal travel across a grid cheaper than the geometry suggests, and it is worth knowing when you are estimating materials. Use the tool's outline count rather than π × d, because π × d will consistently overestimate — by about fifteen per cent at this size. The filled count, by contrast, tracks the true area very closely, because area does not care about the shape of the boundary.
Odd Versus Even Diameters
An odd diameter has a single centre block and produces a shape with clean four-fold symmetry through that block. It is the easier case to build, because you can mark the centre, count outwards in the four cardinal directions, and mirror. Most people find odd circles look rounder.
An even diameter has no single centre — the middle is a two-by-two group of blocks — and the symmetry runs through the seam between them rather than through a block. Even circles are not worse, but they need a different building method: mark the four centre blocks, then mirror across both seams. If you are aligning a circular build to an existing structure such as a doorway or a corridor, the parity of the diameter decides whether the centre line falls on a block or between two, and getting that wrong is the usual reason a finished circle sits half a block off.
The practical rule is to choose parity from what the circle has to line up with, not from which looks nicer. A tower over a three-wide entrance wants an odd diameter; one over a two-wide entrance wants an even one.
How the Rasterisation Actually Works
Deciding which pixels belong to a circle is a classic computer-graphics problem, and the standard solution is the midpoint circle algorithm. The University of Illinois at Chicago's introductory computer graphics notes on circles set it out: you evaluate a decision function at the midpoint between two candidate pixels and choose whichever side the midpoint falls on, using only integer arithmetic, and you exploit the circle's eight-fold symmetry so only one octant has to be computed at all.
This tool uses the simpler distance test rather than the incremental algorithm, because clarity matters more than speed at these sizes and the two agree on the resulting set for the diameters a build uses. The eight-fold symmetry insight is still the useful part for a builder: compute or count one octant, mirror it four ways to get the quadrants, then mirror those. It turns a 40-block ring into a five-block problem.
The grid itself is not an approximation of anything in the game — a Minecraft world is genuinely a three-dimensional lattice of one-metre cells, as the game's block reference describes. There is no sub-block placement, so the rasterised set is not a compromise; it is the exact best available answer.
Building Spheres and Domes from Layers
A sphere is just a stack of circles whose diameters follow the chord formula above. Generate each layer, build it, move up one, repeat. Because the layer diameters change slowly near the middle and quickly near the poles, most of the visual work is in the top and bottom few courses — get those right and the middle takes care of itself.
A dome is the top half only, which means starting at the widest layer and working up. A hollow sphere uses the outline of each layer rather than the filled version, but with one caveat: at the poles, where consecutive layers differ in diameter by several blocks, outlines alone leave visible gaps when viewed from outside. The usual fix is to fill the top and bottom two or three layers completely and use outlines only through the middle section where the diameter changes slowly. If you are planning the surrounding structure, the aspect ratio calculator helps keep proportions consistent between a build's footprint and its height.
Arb Digital's free tools library covers geometry, grids, conversions and hundreds of other calculators, and our team is happy to talk through anything the tools cannot answer.
Browse Free Tools Talk to Arb DigitalCommon Mistakes to Avoid
- Entering the radius instead of the diameter — the size field is the full width in blocks, so a 15 gives a 15-wide circle.
- Estimating outline blocks with π × d — that overestimates by roughly fifteen per cent, because diagonal steps cover more perimeter than they cost.
- Choosing parity by appearance — pick odd or even based on what the circle must align with, or the centre line will land half a block out.
- Building all four quadrants independently — count one and mirror it, or the seams will not match.
- Using outlines for every sphere layer — the top and bottom courses need filling, or the poles show gaps from outside.
Related Free Tools From Arb Digital
Use the circle calculator for continuous area and circumference, the circle equation calculator for the algebraic form, the nether portal calculator for coordinate conversion between dimensions, the cross stitch calculator for sizing any other gridded design, and the aspect ratio calculator for keeping build proportions consistent. Everything else is in the free online tools hub.
Frequently Asked Questions
Forty blocks in a single-thickness outline, and 177 if the circle is completely filled. The filled figure matches the continuous area of π × 7.5², which is 176.7, so the grid version is as close as a block grid can get.
Yes. An even circle has a two-by-two centre rather than a single centre block, and the symmetry runs through the seam between them. It is not worse, but it needs mirroring across both seams rather than counting out from one block.
The diameter — the full width of the circle in blocks. Entering a radius by mistake produces a shape half the size you intended, which is the most common error with this kind of tool.
Because the ring includes diagonal steps, and a diagonal step covers about 1.41 blocks of perimeter while costing only one block. For a 15-block circle, π × 15 is 47.1 but the outline is 40 blocks.
Use sphere-layer mode and work up one layer at a time. The layer radius is the chord of the sphere at that height, so the diameter changes slowly near the middle and quickly at the top and bottom.
Yes. Choose ellipse mode and set the width and height separately. The same centre-of-cell test applies with two different semi-axes, so the shape stays symmetrical in both directions.
Build one quadrant carefully and mirror it. A circle has four-fold symmetry and the underlying computation has eight-fold symmetry, so one octant determines the entire shape and every other block position follows from it.