mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-02-12 20:03:07 +05:00
18 lines
326 B
C++
18 lines
326 B
C++
![]() |
#ifndef __MESHCUT_FONCTION_HXX__
|
||
|
#define __MESHCUT_FONCTION_HXX__
|
||
|
|
||
|
namespace MESHCUT
|
||
|
{
|
||
|
float longueurSegment(int ngA, int ngB);
|
||
|
|
||
|
float distanceNoeudPlan(float point[3]);
|
||
|
|
||
|
float distanceNoeudPlan(int ng);
|
||
|
|
||
|
int positionNoeudPlan(int indiceNoeud);
|
||
|
|
||
|
int intersectionSegmentPlan(int it4, int na);
|
||
|
}
|
||
|
|
||
|
#endif
|