| 167 | } |
| 168 | |
| 169 | int LNLIB_MATRIX_has_reflection(Matrix4d_C m) |
| 170 | { |
| 171 | bool success = ToMatrix4d(m).HasReflection(); |
| 172 | return success ? 1 : 0; |
| 173 | } |
| 174 | |
| 175 | int LNLIB_MATRIX_is_translation(Matrix4d_C m) |
| 176 | { |
nothing calls this directly
no test coverage detected