Salome HOME
Merge branch 'V9_9_BR'
[tools/medcoupling.git] / src / INTERP_KERNEL / TargetIntersector.txx
1 // Copyright (C) 2007-2022  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 // Author : Anthony Geay (CEA/DEN)
20
21 #ifndef __TARGETINTERSECTOR__TXX__
22 #define __TARGETINTERSECTOR__TXX__
23
24 #include "TargetIntersector.hxx"
25 #include <limits>
26
27 namespace INTERP_KERNEL
28 {
29   /*! Readjusts a set of bounding boxes so that they are extended
30     in all dimensions for avoiding missing interesting intersections
31
32     @param bbox vector containing the bounding boxes
33     @param adjustmentEps relative adjustment value (a percentage of the maximal BBox dimension)
34     @param adjustmentEpsAbs absolute adjustment value (added on each side of the BBox in each dimension)
35   */
36   template<class MyMeshType, class MyMatrix>
37   void TargetIntersector<MyMeshType,MyMatrix>::adjustBoundingBoxes(std::vector<double>& bbox, double adjustmentEps, double adjustmentEpsAbs)
38   {
39     std::size_t size = bbox.size()/(2*SPACEDIM);
40     for (std::size_t i=0; i<size; i++)
41       {
42         double max=- std::numeric_limits<double>::max();
43         for(int idim=0; idim<SPACEDIM; idim++)
44           {
45             double Dx=bbox[i*2*SPACEDIM+1+2*idim]-bbox[i*2*SPACEDIM+2*idim];
46             max=(max<Dx)?Dx:max;
47           }
48         for(int idim=0; idim<SPACEDIM; idim++)
49           {
50             bbox[i*2*SPACEDIM+2*idim  ] -= adjustmentEps*max+adjustmentEpsAbs;
51             bbox[i*2*SPACEDIM+2*idim+1] += adjustmentEps*max+adjustmentEpsAbs;
52           }
53       }
54   }
55
56 }
57
58 #endif