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) => _wasm.MatrixOrtho(
p.toJS,
left.toJS,
right.toJS,
bottom.toJS,
top.toJS,
nearPlane.toJS,
farPlane.toJS,
),
);