| 44 | } |
| 45 | |
| 46 | Matrix4d_C LNLIB_MATRIX_create_rotation(XYZ_C axis, double rad) |
| 47 | { |
| 48 | return FromMatrix4d(LNLib::Matrix4d::CreateRotation(ToXYZ(axis), rad)); |
| 49 | } |
| 50 | |
| 51 | Matrix4d_C LNLIB_MATRIX_create_rotation_at_point(const XYZ_C& origin, const XYZ_C& axis, double rad) |
| 52 | { |
nothing calls this directly
no test coverage detected