From: ageay Date: Tue, 25 Oct 2011 12:48:51 +0000 (+0000) Subject: Correction of bug on SEG3 not recognized as quadratic. X-Git-Tag: V6_main_FINAL~924 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=95ba53cb77cecbfbb975d2b4387795d13b147d15;p=tools%2Fmedcoupling.git Correction of bug on SEG3 not recognized as quadratic. --- diff --git a/src/INTERP_KERNEL/CellModel.cxx b/src/INTERP_KERNEL/CellModel.cxx index f9199b56f..d3681de82 100644 --- a/src/INTERP_KERNEL/CellModel.cxx +++ b/src/INTERP_KERNEL/CellModel.cxx @@ -122,7 +122,7 @@ namespace INTERP_KERNEL break; case NORM_SEG3: { - _nb_of_pts=3; _nb_of_sons=0; _dim=1; _extruded_type=NORM_QUAD8; _linear_type=NORM_SEG2; _is_simplex=false; + _nb_of_pts=3; _nb_of_sons=0; _dim=1; _extruded_type=NORM_QUAD8; _linear_type=NORM_SEG2; _quadratic=true; _is_simplex=false; } break; case NORM_TETRA4: @@ -278,7 +278,7 @@ namespace INTERP_KERNEL break; case NORM_QPOLYG: { - _nb_of_pts=0; _nb_of_sons=0; _dim=2; _dyn=true; _is_simplex=false; + _nb_of_pts=0; _nb_of_sons=0; _dim=2; _dyn=true; _is_simplex=false; _quadratic=true; } break; case NORM_ERROR: