coord.h File Reference

(r1785/r1285)

#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)


Function Documentation

Coord operator- const Coord input  )  [inline]
 

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 }


Generated on Sat Nov 10 03:49:06 2007 for Camelot by  doxygen 1.4.4