/*------------------------------------------------------------*/ /* filename - tpoint.cpp */ /* */ /* function(s) */ /* TPoint member functions */ /*------------------------------------------------------------*/ /*------------------------------------------------------------*/ /* */ /* Turbo Vision - Version 1.0 */ /* */ /* */ /* Copyright (c) 1991 by Borland International */ /* All Rights Reserved. */ /* */ /*------------------------------------------------------------*/ #define Uses_TPoint #include TPoint operator - ( const TPoint& one, const TPoint& two ) { TPoint result; result.x = one.x - two.x; result.y = one.y - two.y; return result; } TPoint operator + ( const TPoint& one, const TPoint& two ) { TPoint result; result.x = one.x + two.x; result.y = one.y + two.y; return result; } int operator == ( const TPoint& one, const TPoint& two ) { return one.x == two.x && one.y == two.y; } int operator!= ( const TPoint& one, const TPoint& two ) { return one.x != two.x || one.y != two.y; }