Ejemplo n.º 1
0
 /**
  * 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));
 }
Ejemplo n.º 2
0
 /**
  * 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));
 }