#include <math.h>
Go to the source code of this file.
Classes | |
class | Coord |
Structure holding a 32-bit cartesian coordinate. More... | |
Functions | |
Coord | operator- (const Coord &input) |
|
Definition at line 163 of file coord.h. 00164 { 00165 Coord result; 00166 00167 result.x = -input.x; 00168 result.y = -input.y; 00169 return result; 00170 }
|