glOrthographic

Construct an orthographic matrix ( 4x4 and floating - point matrices only ).

nothrow @nogc
mat4
glOrthographic
(
float left
,
float right
,
float bottom
,
float top
,
float near
,
float far
)
in { assert (right - left != 0); assert (top - bottom != 0); assert (far - near != 0); }

Meta