Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Qt 中编程,我需要绘制一条打开的曲线并用画笔颜色填充它。我不希望它像多边形一样关闭。考虑到我的曲线是正弦曲线,我也只想填充曲线的上半部分(X 轴上方的部分)
您可以使用QPainterPath,这里是文档链接。QPainterPath 有可以绘制曲线的方法quadTo。cubicTo
QPainterPath
quadTo
cubicTo
文档也有一些很好的示例代码,其行为与您正在寻找的一样