In the past i can do
auto rot = joint.getOrientationQuat();
ofVec3f axis;
float angle;
rot.getRotate(angle, axis);
ofRotate(angle, axis.x, axis.y, axis.z);
But now with glm i get an error on getRotate, how can i do that code with glm ?¿¿