| 409 | QPointF toPointF() const { return QPointF(mX, mY); } |
| 410 | |
| 411 | bool isNull() const { return qIsNull(mX) && qIsNull(mY); } |
| 412 | void normalize(); |
| 413 | QCPVector2D normalized() const; |
| 414 | QCPVector2D perpendicular() const { return QCPVector2D(-mY, mX); } |
nothing calls this directly
no outgoing calls
no test coverage detected