Main Page | Directories | File List | File Members

FTPoint.cpp

Go to the documentation of this file.
00001 #include "FTPoint.h"
00002 
00003 
00004 bool operator == ( const FTPoint &a, const FTPoint &b) 
00005 {
00006     return((a.x == b.x) && (a.y == b.y) && (a.z == b.z));
00007 }
00008 
00009 bool operator != ( const FTPoint &a, const FTPoint &b) 
00010 {
00011     return((a.x != b.x) || (a.y != b.y) || (a.z != b.z));
00012 }
00013 
00014 

Generated on Mon Sep 5 05:29:33 2005 for FTGL by  doxygen 1.4.4