Main Page | Class Hierarchy | Class List | File List | Class Members | 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 Aug 16 18:47:18 2004 for FTGL by doxygen 1.3.6