QGraphicsItem::sceneBoundingRect() - QGraphicsItem::boundingRect()的结果是什么
时间: 2024-01-24 19:25:37 浏览: 89
Qt QGraphicsItem测试
QGraphicsItem::boundingRect() 返回项在其局部坐标系中的边界矩形,而 QGraphicsItem::sceneBoundingRect() 返回项在场景坐标系中的边界矩形。因此,两者的结果可能不同。sceneBoundingRect() 的结果是 boundingRect() 通过项的 transform() 转换后的 scene 中的矩形。如果没有 transform(),则两者的结果相同。
阅读全文