by William Shoaff with lots of help
World space (WS) is the second space in the graphics pipeline. Objects pass through it from model space (MS) and proceed on to view space (VS). World space is a place where we seldom want to stop, yet it is conceptually interesting as the place where all the objects are collected to form a scene, and it provides a mechanism for defining the location of the view of these objects.
We will see that the affine transforms that map objects from model space into world space are concatenated with the view transforms that maps objects from world space into view space. Thus, we never stop in the world to perform other operations. This contrasts with spaces such as view space, where we may compute illumination values (colors) and determine hidden objects, and clip space, where objects are cut to fit the viewport.
There's not much else I can think to say.
World space is a conceptual space used to define the relative location of objects, lights, and viewers. Data flowing down the graphics pipeline never really exists in world space. It goes directly from model space to view space, where some operations are performed on it.
One could map objects to world space and then to view space
using two matrix multiplies: