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.
我想通过drawPoint()绘制很多点。
这是可能的,但调用 repaint() 或 update() 时太慢了。
通常我会画超过 1,000,000 点。
我该怎么办?
我第一眼看到的选项是将您需要的所有内容作为中间缓存绘制到 QPixmap 中,并仅在您的数据发生更改时更新它,同时在需要时使用它进行重绘。