问题标签 [qrect]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
qgraphicsview - QRect 与 QRectF 的右下位置
有谁知道为什么 QRectF right()/bottom() 方法的行为与 QRect 不同?
下面的例子
返回此结果:
当我尝试测量宽度()时,两者都返回 20
我试图检查文档,但没有发现任何提及这些差异。
这是什么原因?以及在没有抗锯齿的情况下绘制 1 像素宽度线时如何在 QGraphicsItem 的情况下使用 QRectF?我应该总是调整 boundingRect().adjust(0,0,-1,-1) 吗?