! \internal Draws lines between the points in \a lines, given in pixel coordinates. \see drawScatterPlot, getCurveLines */
| 23012 | \see drawScatterPlot, getCurveLines |
| 23013 | */ |
| 23014 | void QCPCurve::drawCurveLine(QCPPainter *painter, const QVector<QPointF> &lines) const |
| 23015 | { |
| 23016 | if (painter->pen().style() != Qt::NoPen && painter->pen().color().alpha() != 0) |
| 23017 | { |
| 23018 | applyDefaultAntialiasingHint(painter); |
| 23019 | drawPolyline(painter, lines); |
| 23020 | } |
| 23021 | } |
| 23022 | |
| 23023 | /*! \internal |
| 23024 |