Changeset 3323


Ignore:
Timestamp:
03/23/10 12:05:22 (15 years ago)
Author:
Mathieu Morlighem
Message:

Fixing again...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/Bamgx/objects/Triangles.cpp

    r3322 r3323  
    31643164                                       
    31653165                                        //BUG FIX from original bamg
    3166                                         if(
    3167                                                                 (ei.onGeometry==Gh.curves[nc].be  || ei.onGeometry==Gh.curves[nc].ee)  &&          //Check that we are on the right edge
    3168                                                                 (GeometricalVertex *) *ei[je].onGeometry == &(*Gh.curves[nc].be)[Gh.curves[nc].kb] //Check that we are on the right extremity
    3169                                           ){
     3166                                        //Check that we are on the same edge and right extrimity
     3167                                        if(ei.onGeometry==Gh.curves[nc].be  && (GeometricalVertex *)*ei[je].onGeometry==&(*Gh.curves[nc].be)[Gh.curves[nc].kb]){
     3168                                                bcurve[nc]=iedge*2+je;
     3169                                                bfind++;       
     3170                                        }
     3171                                        else if ((ei.onGeometry==Gh.curves[nc].ee  && (GeometricalVertex *)*ei[je].onGeometry==&(*Gh.curves[nc].ee)[Gh.curves[nc].ke]) && bcurve[nc]==-1){
    31703172                                                bcurve[nc]=iedge*2+je;
    31713173                                                bfind++;       
Note: See TracChangeset for help on using the changeset viewer.