Changeset 2331


Ignore:
Timestamp:
05/16/22 15:08:12 (2 years ago)
Author:
jderouillat
Message:

Activate extrapolation as an option (set by default to true) in axis interpolation using the coordinate attribute. Extrapolation was forced on trunk since commit 2033.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/src/transformation/axis_algorithm_interpolate.cpp

    r2285 r2331  
    5555  interpAxis->checkValid(axisSource); 
    5656  order_ = interpAxis->order.getValue(); 
    57   if (interpAxis->extrapolate.isEmpty()) extrapolate_=false ; 
     57  if (interpAxis->extrapolate.isEmpty()) extrapolate_=true ; 
    5858  else extrapolate_=interpAxis->extrapolate ; 
    5959   
     
    195195 
    196196    } 
    197     else 
     197    else if (extrapolate_) 
    198198    { 
    199199      it=itb ; 
Note: See TracChangeset for help on using the changeset viewer.