| 87 | |
| 88 | template<typename T> |
| 89 | void Point<T>::moveBy(const T& x2, const T& y2) noexcept |
| 90 | { |
| 91 | x = static_cast<T>(x+x2); |
| 92 | y = static_cast<T>(y+y2); |
| 93 | } |
| 94 | |
| 95 | template<typename T> |
| 96 | void Point<T>::moveBy(const Point<T>& pos) noexcept |
no outgoing calls
no test coverage detected