Salome HOME
Compilation on Windows platform.
[modules/smesh.git] / src / SMESHUtils / SMESH_MeshAlgos.hxx
index dc4d8fcb451831dd2c82253c6ab910e16183352f..f1604572b2a83bba6922c0e95a5eae7bd8513f4f 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
 //
 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
@@ -6,7 +6,7 @@
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 // License as published by the Free Software Foundation; either
-// version 2.1 of the License.
+// version 2.1 of the License, or (at your option) any later version.
 //
 // This library is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -100,9 +100,18 @@ namespace SMESH_MeshAlgos
   SMESHUtils_EXPORT
   bool IsOut( const SMDS_MeshElement* element, const gp_Pnt& point, double tol );
 
+  SMESHUtils_EXPORT
+  double GetDistance( const SMDS_MeshElement* elem, const gp_Pnt& point );
+
+  SMESHUtils_EXPORT
+  double GetDistance( const SMDS_MeshEdge* edge, const gp_Pnt& point );
+
   SMESHUtils_EXPORT
   double GetDistance( const SMDS_MeshFace* face, const gp_Pnt& point );
 
+  SMESHUtils_EXPORT
+  double GetDistance( const SMDS_MeshVolume* volume, const gp_Pnt& point );
+
   SMESHUtils_EXPORT
   void GetBarycentricCoords( const gp_XY& point,
                              const gp_XY& t0, const gp_XY& t1, const gp_XY& t2,