在 QGraphicsScene 中定位 QGraphicsPolygonItem 的副本时出现问题
我有一个应用程序,其中 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
发生这种情况是因为 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.