Hi All,

I have a QGraphicsView that I am rotating various amounts based on a passed angle, about 10 times per second. Is there a way I can determine what the current rotational angle of the view is? For example, if I've rotated it 30, then -90, I'd like to know its current rotation is -60.

I've tried to track this in my program, but after a while my tracked angle is quite different than the actual angle. I was tracking the previous angle (pa), subtracting it from the current angle (ca), and then rotating the view by (ca-pa) degrees...

Is current rotation available or deriveable? THANKS!

bjh