| 461 | |
| 462 | template<typename T> |
| 463 | void Line<T>::setEndPos(const T& x, const T& y) noexcept |
| 464 | { |
| 465 | posEnd = Point<T>(x, y); |
| 466 | } |
| 467 | |
| 468 | template<typename T> |
| 469 | void Line<T>::setEndPos(const Point<T>& pos) noexcept |
no outgoing calls
no test coverage detected