MatrixLookAt method

MatrixC MatrixLookAt(
  1. Vector3C eye,
  2. Vector3C target,
  3. Vector3C up
)

Get camera look-at matrix (view matrix)

Implementation

MatrixC MatrixLookAt(Vector3C eye, Vector3C target, Vector3C up)
  => _MatrixLookAt(eye, target, up);