Edit

kc3-lang/ftgl/src/FTPoint.cpp

Branch :

  • Show log

    Commit

  • Author : henry
    Date : 2002-11-27 06:35:56
    Hash : 83da3d1a
    Message : Moved these classes to there own files

  • src/FTPoint.cpp
  • #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));
    }