| 72 | } |
| 73 | |
| 74 | static void OutputMatrix(const dmTransform::Transform& transform) |
| 75 | { |
| 76 | dmVMath::Matrix4 mat = dmTransform::ToMatrix4(transform); |
| 77 | printf(" "); OutputVector4(mat.getRow(0)); |
| 78 | printf(" "); OutputVector4(mat.getRow(1)); |
| 79 | printf(" "); OutputVector4(mat.getRow(2)); |
| 80 | printf(" "); OutputVector4(mat.getRow(3)); |
| 81 | } |
| 82 | |
| 83 | // TODO: move this to a private header |
| 84 | static dmTransform::Transform& ToTransform(const dmModelImporter::Transform& in, dmTransform::Transform& out) |
no test coverage detected