* Changes the X coordinate of a given point. * @param i Point number (0-max). * @param x Point's X coordinate. */
| 128 | * @param x Point's X coordinate. |
| 129 | */ |
| 130 | void Polygon::setX(int i, Sint16 x) |
| 131 | { |
| 132 | _x[i] = x; |
| 133 | } |
| 134 | |
| 135 | /** |
| 136 | * Returns the Y coordinate of a given point. |
no outgoing calls
no test coverage detected