00001 /*===========================================================================*\ 00002 * * 00003 * OpenFlipper * 00004 * Copyright (C) 2001-2009 by Computer Graphics Group, RWTH Aachen * 00005 * www.openflipper.org * 00006 * * 00007 *---------------------------------------------------------------------------* 00008 * This file is part of OpenFlipper. * 00009 * * 00010 * OpenFlipper is free software: you can redistribute it and/or modify * 00011 * it under the terms of the GNU Lesser General Public License as * 00012 * published by the Free Software Foundation, either version 3 of * 00013 * the License, or (at your option) any later version with the * 00014 * following exceptions: * 00015 * * 00016 * If other files instantiate templates or use macros * 00017 * or inline functions from this file, or you compile this file and * 00018 * link it with other files to produce an executable, this file does * 00019 * not by itself cause the resulting executable to be covered by the * 00020 * GNU Lesser General Public License. This exception does not however * 00021 * invalidate any other reasons why the executable file might be * 00022 * covered by the GNU Lesser General Public License. * 00023 * * 00024 * OpenFlipper is distributed in the hope that it will be useful, * 00025 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00026 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00027 * GNU Lesser General Public License for more details. * 00028 * * 00029 * You should have received a copy of the GNU LesserGeneral Public * 00030 * License along with OpenFlipper. If not, * 00031 * see <http://www.gnu.org/licenses/>. * 00032 * * 00033 \*===========================================================================*/ 00034 00035 /*===========================================================================*\ 00036 * * 00037 * $Revision: 6727 $ * 00038 * $Author: moebius $ * 00039 * $Date: 2009-08-05 08:03:50 +0200 (Mi, 05. Aug 2009) $ * 00040 * * 00041 \*===========================================================================*/ 00042 00043 00044 00045 00046 //============================================================================= 00047 // 00048 // CLASS BSPImplT 00049 // 00050 //============================================================================= 00051 00052 #define BSPIMPLT_C 00053 00054 //== INCLUDES ================================================================= 00055 00056 00057 #include "BSPImplT.hh" 00058 #include <float.h> 00059 00060 00061 //== CLASS DEFINITION ========================================================= 00062 00063 00064 template <class BSPCore> 00065 typename BSPImplT<BSPCore>::NearestNeighbor 00066 BSPImplT<BSPCore>:: 00067 nearest(const Point& _p) const 00068 { 00069 NearestNeighborData data; 00070 data.ref = _p; 00071 data.dist = FLT_MAX; 00072 _nearest(this->root_, data); 00073 return NearestNeighbor(data.nearest, sqrt(data.dist)); 00074 } 00075 00076 00077 //----------------------------------------------------------------------------- 00078 00079 00080 template <class BSPCore> 00081 void 00082 BSPImplT<BSPCore>:: 00083 _nearest(Node* _node, NearestNeighborData& _data) const 00084 { 00085 // terminal node 00086 if (!_node->left_child_) 00087 { 00088 Scalar dist; 00089 00090 for (HandleIter it=_node->begin(); it!=_node->end(); ++it) 00091 { 00092 dist = this->traits_.sqrdist(*it, _data.ref); 00093 if (dist < _data.dist) 00094 { 00095 _data.dist = dist; 00096 _data.nearest = *it; 00097 } 00098 } 00099 } 00100 00101 00102 00103 // non-terminal node 00104 else 00105 { 00106 Scalar dist = _node->plane_.distance(_data.ref); 00107 00108 if (dist > 0.0) 00109 { 00110 _nearest(_node->left_child_, _data); 00111 if (dist*dist < _data.dist) 00112 _nearest(_node->right_child_, _data); 00113 } 00114 else 00115 { 00116 _nearest(_node->right_child_, _data); 00117 if (dist*dist < _data.dist) 00118 _nearest(_node->left_child_, _data); 00119 } 00120 } 00121 } 00122 00123 00124 //=============================================================================