* Returns the X coordinate of a given point. * @param i Point number (0-max). * @return Point's X coordinate. */
| 118 | * @return Point's X coordinate. |
| 119 | */ |
| 120 | Sint16 Polygon::getX(int i) const |
| 121 | { |
| 122 | return _x[i]; |
| 123 | } |
| 124 | |
| 125 | /** |
| 126 | * Changes the X coordinate of a given point. |
no outgoing calls
no test coverage detected