| 74 | } |
| 75 | |
| 76 | Matrix4d_C LNLIB_MATRIX_set_basis_x(Matrix4d_C m, XYZ_C basisX) |
| 77 | { |
| 78 | LNLib::XYZ x = ToXYZ(basisX); |
| 79 | LNLib::Matrix4d mat = ToMatrix4d(m); |
| 80 | mat.SetBasisX(x); |
| 81 | return FromMatrix4d(mat); |
| 82 | } |
| 83 | |
| 84 | XYZ_C LNLIB_MATRIX_get_basis_y(Matrix4d_C m) |
| 85 | { |
nothing calls this directly
no test coverage detected