| 35 | int getHeight() const { return mHeight; } |
| 36 | |
| 37 | cPosition getCentre() const { return { mWidth / 2, mHeight / 2 }; }; |
| 38 | |
| 39 | cDimension operator/(const cDimension& pDim) { |
| 40 | return cDimension(mWidth / pDim.mWidth, mHeight / pDim.mHeight); |
nothing calls this directly
no outgoing calls
no test coverage detected