X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FINTERP_KERNEL%2FCellModel.hxx;h=dd37f1b83e0b042148a10544a61a080139293e76;hb=3e9ebc98a6bc02022900a8b2295e1a775d78ece0;hp=9da0f7d229fe779f1063a9072f558289e90d04ca;hpb=e3f57e412fe3ca55fdb26275d2f6d8967f83e86c;p=tools%2Fmedcoupling.git diff --git a/src/INTERP_KERNEL/CellModel.hxx b/src/INTERP_KERNEL/CellModel.hxx index 9da0f7d22..dd37f1b83 100644 --- a/src/INTERP_KERNEL/CellModel.hxx +++ b/src/INTERP_KERNEL/CellModel.hxx @@ -30,9 +30,10 @@ namespace INTERP_KERNEL { class DiameterCalculator; + class OrientationInverter; /*! - * This class descibes all static elements (different from polygons and polyhedron) 3D, 2D and 1D. + * This class describes all static elements (different from polygons and polyhedron) 3D, 2D and 1D. */ class CellModel { @@ -55,6 +56,7 @@ namespace INTERP_KERNEL INTERPKERNEL_EXPORT bool isSimplex() const { return _is_simplex; } //! sonId is in C format. INTERPKERNEL_EXPORT const unsigned *getNodesConstituentTheSon(unsigned sonId) const { return _sons_con[sonId]; } + INTERPKERNEL_EXPORT const unsigned *getNodesConstituentTheLittleSon(unsigned littleSonId) const { return _little_sons_con[littleSonId]; } INTERPKERNEL_EXPORT bool getOrientationStatus(unsigned lgth, const int *conn1, const int *conn2) const; INTERPKERNEL_EXPORT unsigned getNumberOfNodes() const { return _nb_of_pts; } INTERPKERNEL_EXPORT unsigned getNumberOfSons() const { return _nb_of_sons; } @@ -79,6 +81,7 @@ namespace INTERP_KERNEL INTERPKERNEL_EXPORT void changeOrientationOf2D(int *nodalConn, unsigned int sz) const; INTERPKERNEL_EXPORT void changeOrientationOf1D(int *nodalConn, unsigned int sz) const; INTERPKERNEL_EXPORT DiameterCalculator *buildInstanceOfDiameterCalulator(int spaceDim) const; + INTERPKERNEL_EXPORT OrientationInverter *buildOrientationInverter() const; private: bool _dyn; bool _quadratic;