| 87 | } |
| 88 | |
| 89 | Matrix4d_C LNLIB_MATRIX_set_basis_y(Matrix4d_C m, XYZ_C basisY) |
| 90 | { |
| 91 | LNLib::XYZ y = ToXYZ(basisY); |
| 92 | LNLib::Matrix4d mat = ToMatrix4d(m); |
| 93 | mat.SetBasisY(y); |
| 94 | return FromMatrix4d(mat); |
| 95 | } |
| 96 | |
| 97 | XYZ_C LNLIB_MATRIX_get_basis_z(Matrix4d_C m) |
| 98 | { |
nothing calls this directly
no test coverage detected