From 95ba53cb77cecbfbb975d2b4387795d13b147d15 Mon Sep 17 00:00:00 2001 From: ageay Date: Tue, 25 Oct 2011 12:48:51 +0000 Subject: [PATCH] Correction of bug on SEG3 not recognized as quadratic. --- src/INTERP_KERNEL/CellModel.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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: -- 2.39.2