! \internal Draws scatter symbols at every point passed in \a scatters, given in pixel coordinates. The scatters will be drawn with \a painter and have the appearance as specified in \a style. \see drawLinePlot, drawImpulsePlot */
| 21637 | \see drawLinePlot, drawImpulsePlot |
| 21638 | */ |
| 21639 | void QCPGraph::drawScatterPlot(QCPPainter *painter, const QVector<QPointF> &scatters, const QCPScatterStyle &style) const |
| 21640 | { |
| 21641 | applyScattersAntialiasingHint(painter); |
| 21642 | style.applyTo(painter, mPen); |
| 21643 | foreach (const QPointF &scatter, scatters) |
| 21644 | style.drawShape(painter, scatter.x(), scatter.y()); |
| 21645 | } |
| 21646 | |
| 21647 | /*! \internal |
| 21648 |