Function ortho_LH_M11

Build an orthographic projection matrix with left-hand NDC and [-1 .. 1] depth clipping

Mat4!T ortho_LH_M11(T) (
  in T l,
  in T r,
  in T b,
  in T t,
  in T n,
  in T f
);

Parameters

NameDescription
l X position of the left plane
r X position of the right plane
b Y position of the bottom plane
t Y position of the top plane
n distance from origin to near plane (in Z-)
f distance from origin to far plane (in Z-)

Returns

an affine matrix that maps from eye coordinates to NDC.

Example

import gfx.math.approx : approxUlp;
const m = ortho_LH_M11(3f, 5f, -2f, 7f, 1f, 10f);
const v1 = vec(3f, -2f, -1f, 1f);
const v2 = vec(5f, 7f, -10f, 1f);
const v0 = vec(4f, 2.5f, -5.5f, 1f);

assert(approxUlp( m * v1, vec(-1f, -1f, -1f, 1f) ));
assert(approxUlp( m * v2, vec(1f, 1f, 1f, 1f) ));
assert(approxUlp( m * v0, vec(0f, 0f, 0f, 1f) ));