ortho property

Matrix4 get ortho

Implementation

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