! \relates QCPVector2D Prints \a vec in a human readable format to the qDebug output. */
| 503 | Prints \a vec in a human readable format to the qDebug output. |
| 504 | */ |
| 505 | inline QDebug operator<< (QDebug d, const QCPVector2D &vec) |
| 506 | { |
| 507 | d.nospace() << "QCPVector2D(" << vec.x() << ", " << vec.y() << ")"; |
| 508 | return d.space(); |
| 509 | } |
| 510 | |
| 511 | /* end of 'src/vector2d.h' */ |
| 512 |