792 GeomEdge* on=e.GeomEdgeHook;
794 _error_(
"ProjectOnCurve error message: edge provided should be on geometry");
796 if (!e[0].GeomEdgeHook || !e[1].GeomEdgeHook){
797 _error_(
"ProjectOnCurve error message: at least one of the vertex of the edge provided is not on geometry");
801 const BamgVertex &v0=e[0];
802 const BamgVertex &v1=e[1];
805 R2 V0=v0,V1=v1,V01=V1-V0;
808 VertexOnGeom vg0=*v0.GeomEdgeHook, vg1=*v1.GeomEdgeHook;
811 GeomEdge *eg0=on, *eg1=on;
814 R2 Ag=(
R2)(*on)[0],Bg=(
R2)(*on)[1],AB=Bg-Ag;
815 int OppositeSens = (V01,AB)<0;
816 int direction0=0,direction1=1;
820 V.m=Metric(1.0-s,v0.m,s,v1.m);
824 int directionge[mxe+1];
826 int bge=mxe/2,tge=bge;
827 ge[bge] = e.GeomEdgeHook;
830 while(eg0!=(GeomEdge*)vg0 && (*eg0)(direction0)!=(GeomVertex*)vg0){
833 _printf_(
"Fatal Error: on the class Mesh before call Geometry::ProjectOnCurve\n");
834 _printf_(
"That bug might come from:\n");
835 _printf_(
" 1) a mesh edge containing more than " << mxe/2 <<
" geometrical edges\n");
836 _printf_(
" 2) code bug : be sure that we call Mesh::SetVertexFieldOn() before\n");
837 _printf_(
"To solve the problem do a coarsening of the geometrical mesh or change the constant value of mxe (dangerous)\n");
843 GeomEdge* tmpge = eg0;
844 ge[--bge] =eg0 = eg0->Adj[direction0];
846 direction0 = 1-( directionge[bge] = tmpge->AdjVertexIndex[direction0]);
848 while (eg1 != (GeomEdge*) vg1 && (*eg1)(direction1) != (GeomVertex*) vg1) {
850 _printf_(
"WARNING: on the class Mesh before call Geometry::ProjectOnCurve is having issues (isn't it Eric?)\n");
852 if (NbTry<2)
goto retry;
853 _printf_(
"Fatal Error: on the class Mesh before call Geometry::ProjectOnCurve\n");
854 _printf_(
"That bug might come from:\n");
855 _printf_(
" 1) a mesh edge contening more than " << mxe/2 <<
" geometrical edges\n");
856 _printf_(
" 2) code bug : be sure that we call Mesh::SetVertexFieldOn() before\n");
857 _printf_(
"To solve the problem do a coarsening of the geometrical mesh or change the constant value of mxe (dangerous)\n");
860 GeomEdge* tmpge = eg1;
861 ge[++tge] =eg1 = eg1->Adj[direction1];
862 directionge[tge]= direction1 = 1-tmpge->AdjVertexIndex[direction1];
866 if ((*eg0)(direction0)==(GeomVertex*)vg0)
867 vg0=VertexOnGeom(*(BamgVertex*) vg0,*eg0,direction0);
869 if ((*eg1)(direction1)==(GeomVertex*)vg1)
870 vg1=VertexOnGeom(*(BamgVertex*) vg1,*eg1,direction1);
874 double s0=vg0,s1=vg1;
875 sg = s0*(1.0-s) + s*s1;
883 for(i=bge;i<tge;i++){
885 BB = (*ge[i])[directionge[i]];
886 lge[i]=ll +=
Norme2(AA-BB);
888 lge[tge]=ll+=
Norme2(AA-V1);
894 s1= directionge[bge];
897 while ( (l1=lge[i]) < ls ) {
899 i++,s0=1-(s1=directionge[i]),l0=l1;
910 GV=VertexOnGeom(V,*on,sg);