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.
Matrix4 perspective() { return this..setEntry(3, 2, 0.001); }