Hash : 83da3d1a Author : Date : 2002-11-27T06:35:56
Download
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#include "FTPoint.h" bool operator == ( const FTPoint &a, const FTPoint &b) { return((a.x == b.x) && (a.y == b.y) && (a.z == b.z)); } bool operator != ( const FTPoint &a, const FTPoint &b) { return((a.x != b.x) || (a.y != b.y) || (a.z != b.z)); }