QGraphicsItem: How to check item is rotated or not
Solved
General and Desktop
-
Hello,
I want to check whether item on the main scene is rotated or not ..How do I check it ???
Many Thanks
-
Use sceneTransform() to get the item's transformation relative to the whole scene.
The use that QTransform's "isRotating()" -
Use sceneTransform() to get the item's transformation relative to the whole scene.
The use that QTransform's "isRotating()"@Asperamanca Thanks I will do so