Hello,

I have a custom class derived from QGraphicsItem. Then I call setPos(), then make rotate() on 90 degrees around specified point ( sequence: translate() ; rotate() ; translate() ). What is the meaning of pos(), scenePos() after this? Item does not have any parent item and value of pos() and scenePos() is different. But boundingRect() gives correct values.

Object is custom image item, rectangular area.
How to rotate object of class derived from QGraphicsItem correctly?

In case of QGraphicsPixmapItem what does setPos() mean? Left top point?