! Creates a QCPVector2D object and initializes the x and y coordinates to 0. */
| 109 | Creates a QCPVector2D object and initializes the x and y coordinates to 0. |
| 110 | */ |
| 111 | QCPVector2D::QCPVector2D() : |
| 112 | mX(0), |
| 113 | mY(0) |
| 114 | { |
| 115 | } |
| 116 | |
| 117 | /*! |
| 118 | Creates a QCPVector2D object and initializes the \a x and \a y coordinates with the specified |
nothing calls this directly
no outgoing calls
no test coverage detected