'Hexagonal' (Orthogonal) Projection

preview_player
Показать описание
Orthogonal projection (or orthographic projection) is a means of representing a three-dimensional object in two dimensions.

In computer graphics, one of the most common matrices used for orthographic projection can be defined by a 6-tuple, (left, right, bottom, top, near, far), which defines the clipping planes. These planes form a box with the minimum corner at (left, bottom, -near) and the maximum corner at (right, top, -far).

The box is translated so that its center is at the origin, then it is scaled to the unit cube which is defined by having a minimum corner at (-1,-1,-1) and a maximum corner at (1,1,1).
Рекомендации по теме