00001 /************************************************************** ggt-head beg 00002 * 00003 * GGT: Generic Graphics Toolkit 00004 * 00005 * Original Authors: 00006 * Allen Bierbaum 00007 * 00008 * ----------------------------------------------------------------- 00009 * File: $RCSfile: CoordOps.h,v $ 00010 * Date modified: $Date: 2003/03/03 00:54:04 $ 00011 * Version: $Revision: 1.5 $ 00012 * ----------------------------------------------------------------- 00013 * 00014 *********************************************************** ggt-head end */ 00015 /*************************************************************** ggt-cpr beg 00016 * 00017 * GGT: The Generic Graphics Toolkit 00018 * Copyright (C) 2001,2002 Allen Bierbaum 00019 * 00020 * This library is free software; you can redistribute it and/or 00021 * modify it under the terms of the GNU Lesser General Public 00022 * License as published by the Free Software Foundation; either 00023 * version 2.1 of the License, or (at your option) any later version. 00024 * 00025 * This library is distributed in the hope that it will be useful, 00026 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00027 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00028 * Lesser General Public License for more details. 00029 * 00030 * You should have received a copy of the GNU Lesser General Public 00031 * License along with this library; if not, write to the Free Software 00032 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00033 * 00034 ************************************************************ ggt-cpr end */ 00035 #ifndef _GMTL_COORD_OPS_H_ 00036 #define _GMTL_COORD_OPS_H_ 00037 00038 #include <gmtl/Coord.h> 00039 00040 namespace gmtl 00041 { 00052 template <typename POS_TYPE, typename ROT_TYPE> 00053 inline bool operator==( const Coord<POS_TYPE, ROT_TYPE>& c1, 00054 const Coord<POS_TYPE, ROT_TYPE>& c2 ) 00055 { 00056 return bool( c1.getPos() == c2.getPos() && 00057 c1.getRot() == c2.getRot() ); 00058 } 00059 00065 template <typename POS_TYPE, typename ROT_TYPE> 00066 inline bool operator!=( const Coord<POS_TYPE, ROT_TYPE>& c1, 00067 const Coord<POS_TYPE, ROT_TYPE>& c2 ) 00068 { 00069 return !operator==( c1, c2 ); 00070 } 00071 00078 template <typename POS_TYPE, typename ROT_TYPE> 00079 bool isEqual( const Coord<POS_TYPE, ROT_TYPE>& c1, 00080 const Coord<POS_TYPE, ROT_TYPE>& c2, 00081 typename Coord<POS_TYPE, ROT_TYPE>::DataType tol = 00082 (typename Coord<POS_TYPE, ROT_TYPE>::DataType)0.0 ) 00083 { 00084 return bool( isEqual( c1.getPos(), c2.getPos(), tol ) && 00085 isEqual( c1.getRot(), c2.getRot(), tol ) ); 00086 } 00089 } 00090 00091 #endif