* Returns the longitude of a given point. * @param i Point number (0-max). * @return Point's longitude. */
| 98 | * @return Point's longitude. |
| 99 | */ |
| 100 | double Polygon::getLongitude(int i) const |
| 101 | { |
| 102 | return _lon[i]; |
| 103 | } |
| 104 | |
| 105 | /** |
| 106 | * Changes the latitude of a given point. |
no outgoing calls
no test coverage detected