| 36 | } |
| 37 | |
| 38 | void bwDrawDot(int x, int y, int color, BWAPI::CoordinateType::Enum ctype) |
| 39 | { |
| 40 | // Convert coordinate type |
| 41 | convertCoordType(x, y, ctype); |
| 42 | |
| 43 | // Plot the point |
| 44 | bwPlot(x, y, color); |
| 45 | } |
| 46 | |
| 47 | // Assume x1 != x2 and y1 != y2 |
| 48 | void bwDrawLine(int x1, int y1, int x2, int y2, int color, BWAPI::CoordinateType::Enum ctype) |
no test coverage detected