/************************************************************** ggt-head beg * * GGT: Generic Graphics Toolkit * * Original Authors: * Allen Bierbaum * * ----------------------------------------------------------------- * File: RayOps.h,v * Date modified: 2003/05/10 21:18:01 * Version: 1.1 * ----------------------------------------------------------------- * *********************************************************** ggt-head end */ /*************************************************************** ggt-cpr beg * * GGT: The Generic Graphics Toolkit * Copyright (C) 2001,2002 Allen Bierbaum * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ************************************************************ ggt-cpr end */ #ifndef _GMTL_RAYOPS_H_ #define _GMTL_RAYOPS_H_ #include namespace gmtl { //--- Ray Comparitor ---// /** * Compare two line segments to see if they are EXACTLY the same. * * @param ls1 the first Ray to compare * @param ls2 the second Ray to compare * * @return true if they are equal, false otherwise */ template< class DATA_TYPE > inline bool operator==( const Ray& ls1, const Ray& ls2 ) { return ( (ls1.mOrigin == ls2.mOrigin) && (ls1.mDir == ls2.mDir) ); } /** * Compare two line segments to see if they are not EXACTLY the same. * * @param ls1 the first Ray to compare * @param ls2 the second Ray to compare * * @return true if they are not equal, false otherwise */ template< class DATA_TYPE > inline bool operator!=( const Ray& ls1, const Ray& ls2 ) { return ( ! (ls1 == ls2) ); } /** * Compare two line segments to see if the are the same within the given * tolerance. * * @param ls1 the first Ray to compare * @param ls2 the second Ray to compare * @param eps the tolerance value to use * * @pre eps must be >= 0 * * @return true if they are equal within the tolerance, false otherwise */ template< class DATA_TYPE > inline bool isEqual( const Ray& ls1, const Ray& ls2, const DATA_TYPE& eps ) { gmtlASSERT( eps >= 0 ); return ( (isEqual(ls1.mOrigin, ls2.mOrigin, eps)) && (isEqual(ls1.mDir, ls2.mDir, eps)) ); } } // namespace gmtl #endif