Return the 2x2 identity matrix
| 218 | |
| 219 | // Return the 2x2 identity matrix |
| 220 | RP3D_FORCE_INLINE Matrix2x2 Matrix2x2::identity() { |
| 221 | |
| 222 | // Return the isdentity matrix |
| 223 | return Matrix2x2(1.0, 0.0, 0.0, 1.0); |
| 224 | } |
| 225 | |
| 226 | // Return the 2x2 zero matrix |
| 227 | RP3D_FORCE_INLINE Matrix2x2 Matrix2x2::zero() { |