! Draws the scatter shape with \a painter at position \a pos. This function does not modify the pen or the brush on the painter, as \ref applyTo is meant to be called before scatter points are drawn with \ref drawShape. \see applyTo */
| 10877 | \see applyTo |
| 10878 | */ |
| 10879 | void QCPScatterStyle::drawShape(QCPPainter *painter, const QPointF &pos) const |
| 10880 | { |
| 10881 | drawShape(painter, pos.x(), pos.y()); |
| 10882 | } |
| 10883 | |
| 10884 | /*! \overload |
| 10885 | Draws the scatter shape with \a painter at position \a x and \a y. |
no test coverage detected