I'm wondering why the orthographic projection we use in computer graphics is called a projection, if all it does is just scale and translate a mesh?
According to wiki orthographic projection is Orthographic projection (sometimes referred to as orthogonal projection, used to be called analemma[a]) is a means of representing three-dimensional objects in two dimensions
, but we don't use orthographic projection to project our mesh to 2d space, we just use it to transform our mesh defined in the view box with arbitrarily defined dimensions (left, right, up, bottom, far and near) to a view box of (-1, 1, -1, 1, -1, 1) dimensions. So why do we call it an orthographic projection?