MatrixOrtho method
Get orthographic projection matrix
Implementation
@override
MatrixD MatrixOrtho(
double left,
double right,
double bottom,
double top,
double nearPlane,
double farPlane,
) => $.Matrix$.Extract1(
(p) => _ffi.MatrixOrtho(
left,
right,
bottom,
top,
nearPlane,
farPlane,
).toDart(p.asNativePointer()),
);