Skip to content

Commit

Permalink
skip extend logic for ellipsoidGate RGLab/CytoML#106
Browse files Browse the repository at this point in the history
  • Loading branch information
mikejiang committed Jun 30, 2020
1 parent 869d30c commit 88b3887
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions inst/include/cytolib/gate.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -472,6 +472,21 @@ class ellipsoidGate:public ellipseGate {

//ellipsoidGate needs to shift its interpolated points
void shiftGate();
/*
* overload ellipseGate::extend function
* to skip extend logic (to avoid exception) since the gates no longer
* seems to be truncated from the latest flowJo wsp
* we may phase out the extend logic for other gates eventually
*
*/
void extend(MemCytoFrame & fdata,float extend_val){
//do nothing
};

void extend(float extend_val, float extend_to){
//do nothing
};

};

/*
Expand Down

0 comments on commit 88b3887

Please sign in to comment.