I have a scene where several items are added. The problem is that when the items are displayed, they are overlapping. Is there any way to indicate in the QGraphicsView or QGraphicsScene the position where each item should appear?
I have a scene where several items are added. The problem is that when
Share
Yes, you have to use
QGraphicsItem::setPos()method.I suppose you added a
QGraphicsPixmapItem, so it could look like :