! \internal Draws lines between the points in \a lines, given in pixel coordinates. \see drawScatterPlot, getCurveLines */
| 22220 | \see drawScatterPlot, getCurveLines |
| 22221 | */ |
| 22222 | void QCPCurve::drawCurveLine(QCPPainter *painter, const QVector<QPointF> &lines) const |
| 22223 | { |
| 22224 | if (painter->pen().style() != Qt::NoPen && painter->pen().color().alpha() != 0) |
| 22225 | { |
| 22226 | applyDefaultAntialiasingHint(painter); |
| 22227 | drawPolyline(painter, lines); |
| 22228 | } |
| 22229 | } |
| 22230 | |
| 22231 | /*! \internal |
| 22232 |