| 113 | } |
| 114 | |
| 115 | Matrix4d_C LNLIB_MATRIX_set_basis_w(Matrix4d_C m, XYZ_C basisW) |
| 116 | { |
| 117 | LNLib::XYZ w = ToXYZ(basisW); |
| 118 | LNLib::Matrix4d mat = ToMatrix4d(m); |
| 119 | mat.SetBasisW(w); |
| 120 | return FromMatrix4d(mat); |
| 121 | } |
| 122 | |
| 123 | XYZ_C LNLIB_MATRIX_of_point(Matrix4d_C m, XYZ_C point) |
| 124 | { |
nothing calls this directly
no test coverage detected