ortho property
Implementation
static Matrix4 get ortho => Matrix4(
1, 0, 0, 0, //
0, 1, 0, 0,
0, 0, 1, 0,
0, 0, 0, 1,
);
static Matrix4 get ortho => Matrix4(
1, 0, 0, 0, //
0, 1, 0, 0,
0, 0, 1, 0,
0, 0, 0, 1,
);