Changeset 3323
- Timestamp:
- 03/23/10 12:05:22 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/Bamgx/objects/Triangles.cpp
r3322 r3323 3164 3164 3165 3165 //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){ 3170 3172 bcurve[nc]=iedge*2+je; 3171 3173 bfind++;
Note:
See TracChangeset
for help on using the changeset viewer.