Changeset 23903


Ignore:
Timestamp:
05/02/19 19:26:11 (6 years ago)
Author:
Mathieu Morlighem
Message:

BUG: constraints for field extrusion should be update is at least one NODE is on base, not an entire edge

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/Elements/Tria.cpp

    r23900 r23903  
    43244324void       Tria::UpdateConstraintsExtrudeFromBase(void){/*{{{*/
    43254325
    4326         if(!HasEdgeOnBase()) return;
     4326        if(!HasNodeOnBase()) return;
    43274327
    43284328        int        extrusioninput;
     
    43484348void       Tria::UpdateConstraintsExtrudeFromTop(void){/*{{{*/
    43494349
    4350         if(!HasEdgeOnSurface()) return;
     4350        if(!HasNodeOnSurface()) return;
    43514351
    43524352        int extrusioninput;
Note: See TracChangeset for help on using the changeset viewer.