/** * Returns the distance in Solvent-Path distance space. * * @return float number representing the distance in Solvent-Path distance space. */ public final float getSolventPathDistance() { return Float.parseFloat( xwalk.constants.Constants.DISTANCE_DEC_FORMAT.format(this.solventPathDistance)); }
/** * Returns the distance in Euclidean space. * * @return float number representing the distance in Euclidean space. */ public final float getEuclideanDistance() { return Float.parseFloat(xwalk.constants.Constants.DISTANCE_DEC_FORMAT.format(this.eucDist)); }