void addToEnd(const Coords &other) { coordinates.insert(coordinates.end(), other.begin(), other.end()); }
inline void addAll(const Coords& other) { coordinates.insert(coordinates.end(), other.begin(), other.end()); }