use of cbit.vcell.parser.SimpleSymbolTable in project vcell by virtualcell.
the class RefinementRoi method setRoiExpression.
public void setRoiExpression(String roiExp) throws ExpressionException {
Expression exp = null;
if (roiExp != null) {
roiExp = roiExp.trim();
if (roiExp.length() > 0) {
exp = new Expression(roiExp);
exp.bindExpression(new SimpleSymbolTable(new String[] { "x", "y", "z" }));
}
}
this.roiExpression = exp;
}
Aggregations