Qt4:比例不变的qgraphicsitem轮廓
我正在使用 Qt4 GraphicsView 框架绘制一些多边形,并且允许用户放大和缩小绘图。我希望当用户更改视图中的缩放级别(比例)时多边形变得更大和更小,但是有没有办法使轮廓厚度始终保持不变?
谢谢!
I am drawing some polygons using the Qt4 GraphicsView framework, and I allow the user to zoom in and out of the drawing. I would like the polygons to get larger and smaller as the user changes zoom levels (scale) in the view, but is there a way to make the outline thickness always remain the same?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,我想至少有这种可能性:
您可以
在笔上使用 TRUE 值进行调用,用于绘制
多边形。无论 QPainter 上应用了任何转换,此属性都允许保持宽度恒定!
希望有帮助!
Yes I guess there is at least this possibility :
You can call
with TRUE value on the pen using to draw the
polygon. This property allows to keep constant the width regardless of any transformations applied on QPainter !
Hope it helps !