Salome HOME
Copyright update 2021
[tools/medcoupling.git] / src / INTERP_KERNEL / Interpolation3D1D.hxx
1 // Copyright (C) 2007-2021  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 : A Bruneton (CEA/DEN)\r
20 \r
21 #pragma once\r
22 \r
23 #include "INTERPKERNELDefines.hxx"\r
24 #include "Interpolation.hxx"\r
25 #include "NormalizedUnstructuredMesh.hxx"\r
26 #include "InterpolationOptions.hxx"\r
27 \r
28 #include <vector>\r
29 \r
30 namespace INTERP_KERNEL\r
31 {
32   /**
33    * \class Interpolation3D1D
34    * \brief Class used to calculate the interpolation between a 3D mesh and 1D mesh (in 3D space)
35    * Can be seen as a specialization of Interpolation3D, and allows notably the adjustment of bounding boxes.
36    */
37
38   class INTERPKERNEL_EXPORT Interpolation3D1D : public Interpolation<Interpolation3D1D>\r
39   {\r
40   public:\r
41     Interpolation3D1D();\r
42     Interpolation3D1D(const InterpolationOptions& io);\r
43     template<class MyMeshType, class MatrixType>\r
44     typename MyMeshType::MyConnType interpolateMeshes(const MyMeshType& srcMesh, const MyMeshType& targetMesh, MatrixType& result, const std::string& method);\r
45   private:\r
46     void adjustBoundingBoxes(std::vector<double>& bbox);\r
47   };\r
48 }\r
49 \r