! \internal Draws lines between the points in \a lines, given in pixel coordinates. \see drawScatterPlot, drawImpulsePlot, QCPAbstractPlottable1D::drawPolyline */
| 21651 | \see drawScatterPlot, drawImpulsePlot, QCPAbstractPlottable1D::drawPolyline |
| 21652 | */ |
| 21653 | void QCPGraph::drawLinePlot(QCPPainter *painter, const QVector<QPointF> &lines) const |
| 21654 | { |
| 21655 | if (painter->pen().style() != Qt::NoPen && painter->pen().color().alpha() != 0) |
| 21656 | { |
| 21657 | applyDefaultAntialiasingHint(painter); |
| 21658 | drawPolyline(painter, lines); |
| 21659 | } |
| 21660 | } |
| 21661 | |
| 21662 | /*! \internal |
| 21663 |