From: eap Date: Fri, 8 Jun 2012 10:50:49 +0000 (+0000) Subject: Make DirectedBoundingBox available at runtime via InterpolationOptions X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=61d6af2df024061732989d0afa966a4ae4dbb810;p=tools%2Fmedcoupling.git Make DirectedBoundingBox available at runtime via InterpolationOptions + void toLocalCS(const double* p, double* pLoc) const; + const double* getLocalMinMax() const { return &_minmax[0]; } --- diff --git a/src/INTERP_KERNEL/DirectedBoundingBox.hxx b/src/INTERP_KERNEL/DirectedBoundingBox.hxx index 3224b6675..1a7d7dff3 100644 --- a/src/INTERP_KERNEL/DirectedBoundingBox.hxx +++ b/src/INTERP_KERNEL/DirectedBoundingBox.hxx @@ -51,6 +51,9 @@ namespace INTERP_KERNEL bool isOut(const double* point) const; + void toLocalCS(const double* p, double* pLoc) const; + + const double* getLocalMinMax() const { return &_minmax[0]; } // return internal data std::vector getData() const; @@ -69,8 +72,6 @@ namespace INTERP_KERNEL inline void addPointToBox(const double* coord); - void toLocalCS(const double* p, double* pLoc) const; - void fromLocalCS(const double* p, double* pGlob) const; inline bool isLocalOut(const double* pLoc) const;