| 161 | } |
| 162 | |
| 163 | int LNLIB_MATRIX_is_identity(Matrix4d_C m) |
| 164 | { |
| 165 | bool success = ToMatrix4d(m).IsIdentity(); |
| 166 | return success ? 1 : 0; |
| 167 | } |
| 168 | |
| 169 | int LNLIB_MATRIX_has_reflection(Matrix4d_C m) |
| 170 | { |
nothing calls this directly
no test coverage detected