What Is a Voxel? Definition, Examples & How AI Is Reinventing 3D Creation

A voxel is the 3D equivalent of a pixel — a single point of data in a three-dimensional grid. Here's what that means, why it matters for games and graphics, and how AI is changing what voxel creation looks like.

A voxel is to 3D space what a pixel is to a 2D image. It’s the smallest discrete unit in a three-dimensional grid — a single cube-shaped cell that holds a value (usually a color or material) at a specific location in space. Stack millions of them together and you get a voxel model.

The word itself is a portmanteau: volumetric pixel.

The full voxel definition

In 2D, a pixel represents one point in a grid. It has an X position, a Y position, and a value (color, opacity). In 3D, a voxel adds a third axis — Z — and represents one point in a cubic grid. That’s the complete voxel definition: a value at a fixed position in a three-dimensional lattice.

Unlike a point in a polygon mesh, a voxel occupies space. It has volume. That’s what makes the technology distinct from traditional 3D modeling.

2D pixel grid vs 3D voxel grid — side-by-side comparison Image to be added
Left: a 2D raster grid where each square is a pixel. Right: a 3D lattice where each cube is a voxel at coordinates (X, Y, Z).

Voxel vs pixel: what’s the difference?

The analogy is almost perfect:

PixelVoxel
Dimensions2D (X, Y)3D (X, Y, Z)
HoldsColor / opacityColor / material / density
Building block ofRaster imagesVolumetric 3D models
Common usePhotos, UI, spritesGames, medical imaging, simulation

A 1920×1080 image contains ~2 million pixels. A 32×32×32 voxel model contains ~32,000 voxels. A 128³ model contains over 2 million. Scale drives both detail and memory cost.

Voxel vs polygon: two approaches to 3D

The dominant approach to 3D in games and film is polygon meshes — a set of triangles that define the surface of an object. A character model might have 20,000 triangles describing its skin, but the interior is hollow. It’s a shell.

Voxels work differently. They describe volume, not just surface. A voxel rock isn’t a hollow triangulated skin — it’s a solid grid of filled cells. This leads to meaningful trade-offs:

Where voxels win:

  • Destructibility — hollow polygon meshes shatter unconvincingly. Voxel structures can be demolished cell by cell, which is why games like Teardown look so satisfying.
  • Procedural generation — terrain built from voxels can be carved, filled, or modified at runtime in ways polygon meshes can’t match naturally.
  • Simplicity — a 16×16×16 voxel model is trivially easy to edit. You change individual cells.

Where polygons win:

  • Fidelity at scale — a high-poly character face at a million triangles looks smoother than any reasonable voxel equivalent.
  • Performance — voxels get expensive fast. A detailed voxel world requires aggressive LOD, chunking, and culling to run in real time.
  • Tooling — the entire 3D industry (Blender, Maya, ZBrush) is built on polygon workflows.
Polygon mesh (hollow shell) vs voxel model (solid volume) Image to be added
A polygon mesh defines only the surface. A voxel model is solid throughout — enabling real destructibility and collision.

How the voxel grid works

Every voxel model lives on a grid: a three-dimensional array of cells, each at integer coordinates. A 32×32×32 model is a cube 32 cells on each side. The grid origin is usually at the bottom-center or bottom-corner of the bounding box.

Each cell is either empty (no voxel) or filled (has a voxel with a color/material). The renderer iterates over the grid and draws visible faces — faces adjacent to empty cells. Interior faces between two filled voxels are culled, since they’d never be seen.

1 3D Grid Integer-coordinate cells in an X×Y×Z array
2 Face check For each filled cell, test its 6 neighbours
3 Cull hidden Skip faces shared with another filled cell
4 Draw visible Render only faces adjacent to empty space
How a voxel renderer decides which faces to draw — the key to efficient voxel performance

This is also why voxel models should be solid rather than hollow when used in game engines — hollow shells create collision problems and break the face-culling logic.

Voxel graphics: the aesthetic

Voxel graphics have a distinct look: chunky, blocky, deliberately low-resolution. The aesthetic emerged from technical constraint (early computers could only handle low-res 3D) but has persisted as an intentional style. It reads as:

  • Readable at a glance — silhouettes are clear, objects don’t blend together
  • Nostalgic — references 8-bit and 16-bit game eras
  • Handcrafted-feeling — each voxel was (or appears to have been) placed by a person
Voxel art examples — characters, props, environments Image to be added
The voxel aesthetic: strong silhouettes, constrained palettes, and deliberate blockiness.

This is why voxel art found a home in indie games: the aesthetic is achievable by a small team without a AAA art budget.

What is voxel art?

Voxel art is the creative practice of building objects, characters, and environments out of voxels — the 3D equivalent of pixel art. An artist places voxels in a 3D editor to create scenes with the characteristic blocky aesthetic.

The discipline requires many of the same skills as pixel art: palette discipline, silhouette design, working within hard resolution constraints. The difference is that you’re building for a 3D camera that can orbit the subject.

How AI is changing voxel creation

Until recently, every voxel in a model was placed manually. A single character might take hours of work in a tool like MagicaVoxel. That constraint shaped what was possible: small studios built small libraries of hand-crafted assets.

Voxel AI changes the input. Instead of placing voxels individually, you type a prompt — “a ruined stone watchtower” — and the system generates a fully-formed voxel model in seconds. The output is game-ready: solid interior, palette-reduced to your color set, exportable as .vox, .glb, or .fbx.

This isn’t just faster. It opens up the long tail of assets that no team has bandwidth to hand-craft: environment clutter, variant enemies, procedural props. The AI handles the volume; artists handle the curation and refinement.

Try it free in the Voxel AI editor — free accounts start with 50 tokens.