* Returns the Y coordinate of a given point. * @param i Point number (0-max). * @return Point's Y coordinate. */
| 138 | * @return Point's Y coordinate. |
| 139 | */ |
| 140 | Sint16 Polygon::getY(int i) const |
| 141 | { |
| 142 | return _y[i]; |
| 143 | } |
| 144 | |
| 145 | /** |
| 146 | * Changes the Y coordinate of a given point. |
no outgoing calls
no test coverage detected