| 39 | } |
| 40 | |
| 41 | Matrix4d_C LNLIB_MATRIX_create_translation(XYZ_C vector) |
| 42 | { |
| 43 | return FromMatrix4d(LNLib::Matrix4d::CreateTranslation(ToXYZ(vector))); |
| 44 | } |
| 45 | |
| 46 | Matrix4d_C LNLIB_MATRIX_create_rotation(XYZ_C axis, double rad) |
| 47 | { |
nothing calls this directly
no test coverage detected