Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef __CURVEINTERSECTORP0P0_HXX__
00021 #define __CURVEINTERSECTORP0P0_HXX__
00022
00023 #include "CurveIntersector.hxx"
00024
00025 namespace INTERP_KERNEL
00026 {
00027 template<class MyMeshType, class MyMatrix>
00028 class CurveIntersectorP0P0 : public CurveIntersector<MyMeshType,MyMatrix>
00029 {
00030 public:
00031 static const int SPACEDIM=MyMeshType::MY_SPACEDIM;
00032 static const int MESHDIM=MyMeshType::MY_MESHDIM;
00033 typedef typename MyMeshType::MyConnType ConnType;
00034 static const NumberingPolicy numPol=MyMeshType::My_numPol;
00035
00036 CurveIntersectorP0P0(const MyMeshType& meshT, const MyMeshType& meshS,
00037 double precision, double tolerance,
00038 double medianLine, int printLevel);
00039 public:
00040 int getNumberOfRowsOfResMatrix() const;
00041 int getNumberOfColsOfResMatrix() const;
00042 void intersectCells(ConnType icellT,
00043 const std::vector<ConnType>& icellsS, MyMatrix& res);
00044 };
00045 }
00046
00047 #endif