perspective method

Matrix4 perspective()

Returns a new Matrix4 with a perspective entry applied.

The entry at row=3, col=2 is set to a small value (0.001) to simulate depth perspective.

Implementation

Matrix4 perspective() {
  return this..setEntry(3, 2, 0.001);
}