Top "Qgraphicsscene" questions

A QGraphicsScene is a class from the Qt toolkit that provides a surface for managing a large number of 2D graphical items.

what is the qtransform in QGraphicsScene::itemAt()

I create a custom QGraphicsItem. And overwrite the boundingRect() and paint(). QRectF myTile::boundingRect() const { return QRectF(xPos*10, yPos*10, 10, 10); } void …

c++ qt qgraphicsitem qgraphicsscene
Layers on QGraphicsView?

Hi I'm making an application that pulls data from a WFS and then displays those layers of data on a …

c++ qt qgraphicsview qgraphicsscene
Finding the point of intersection between a line and a QPainterPath

I'm trying to determine the point where a hitscan projectile's path (basically a line, but I've represented it as a …

qt line intersection qt5 qgraphicsscene