在 QGraphicsScene 中定位 QGraphicsPolygonItem 的副本时出现问题

发布于 2024-09-25 09:40:20 字数 563 浏览 3 评论 0原文

我有一个应用程序,其中 QGraphicsPolygonItem (objectA) 具有以下特征:

ScenePos: X=250 Y=125

Transform():

|----|---|---|
| 2  | 0 | 0 |
| 0  | 1 | 0 |
| 50 | 0 | 1 |
|----|---|---|

现在,我正在创建新的 QGraphicsPolygonItem (objectB) 并将其 scenepos 和 Transform 设置为与对象 A 相同:

objectB = new QGraphicsPolygonItem();
objectB->setPolygon(objectA->polygon());
objectB->setScenePos(objectA->ScenePos);
objectB->setTransform(objectA->transform);

问题是对象 B 在 X 轴上远离对象 A 移动了 50 个单位。

知道为什么吗?

I have an application where a QGraphicsPolygonItem (objectA) has the following characteristics:

ScenePos: X=250 Y=125

Transform():

|----|---|---|
| 2  | 0 | 0 |
| 0  | 1 | 0 |
| 50 | 0 | 1 |
|----|---|---|

Now, I am creating and new QGraphicsPolygonItem (objectB) and setting its scenepos and Transform the same as object A:

objectB = new QGraphicsPolygonItem();
objectB->setPolygon(objectA->polygon());
objectB->setScenePos(objectA->ScenePos);
objectB->setTransform(objectA->transform);

The problem is that objectB moves 50 units away from ObjectA in the X axis.

Any idea why?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

神经暖 2024-10-02 09:40:20

发生这种情况是因为 scenePos() 检索场景中对象的绝对位置,而不考虑其变换矩阵。它与 pos() 一起使用。

卡洛斯.

This happens because scenePos() retrives the absolute position of the object in the scene without taking into consideration its transformation matrix. It work with the use of pos().

Carlos.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文