#include "ccmaths.h"
#include "coord.h"
Go to the source code of this file.
Classes | |
class | WorkCoord |
Functions | |
WorkCoord | operator- (const WorkCoord &input) |
Negates a WorkCoord. |
|
Negates a WorkCoord.
Definition at line 210 of file wrkcoord.h. 00211 { 00212 WorkCoord result; 00213 00214 result.x = -input.x; 00215 result.y = -input.y; 00216 return result; 00217 }
|