Graphics › Coordinate spaces
Model space
Also called local or object space — the coordinates a mesh is authored in, before it knows where in the world it'll end up.
Model space: the cube as the mesh file stores it — built around its own origin, no idea where it'll end up.
the cube's far-top-right corner here: (0.5, 0.5, 0.5)
Where meshes are born
When an artist models a chair, they build it around a convenient origin — usually the centre of its base, or its centre of mass. Every vertex is stored relative to that point and those axes. The file has no idea the chair will sit in a kitchen scene at (3, 0, −7), rotated 40°; that placement comes later. The chair's own coordinates are model space.
Why a sensible local origin matters
One mesh, many copies
Because the geometry lives in model space, you store the mesh once and stamp it everywhere — a forest of 500 trees is one tree mesh plus 500 different model matrices. The GPU calls this instancing; it's why scenes can have millions of objects.
What lives here besides positions
Vertex normals and tangents are also authored in model space, alongside texture coordinates (UVs). When the model matrix has non-uniform scale, normals need the inverse transpose of it, not the matrix itself — otherwise they stop being perpendicular to the surface and your lighting goes wrong.