Edit

kc3-lang/ftgl/src/FTPoint.cpp

Branch :

  • Show log

    Commit

  • Author : henry
    Date : 2004-10-10 22:50:01
    Hash : 4c6baa27
    Message : Refactoring FTPoint

  • src/FTPoint.cpp
  • #include "FTPoint.h"
    
    
    bool operator == ( const FTPoint &a, const FTPoint &b) 
    {
        return((a.elements[0] == b.elements[0]) && (a.elements[1] == b.elements[1]) && (a.elements[2] == b.elements[2]));
    }
    
    bool operator != ( const FTPoint &a, const FTPoint &b) 
    {
        return((a.elements[0] != b.elements[0]) || (a.elements[1] != b.elements[1]) || (a.elements[2] != b.elements[2]));
    }