| 89 | } |
| 90 | |
| 91 | void Annotation::removeCoordinate(const int& index) { |
| 92 | if (index < 0) { |
| 93 | _coordinates.erase(_coordinates.end() - abs(index)); |
| 94 | } |
| 95 | else { |
| 96 | _coordinates.erase(_coordinates.begin() + index); |
| 97 | } |
| 98 | _modified = true; |
| 99 | } |
| 100 | |
| 101 | Point Annotation::getCoordinate(const int& index) const |
| 102 | { |
nothing calls this directly
no outgoing calls
no test coverage detected