java.lang.Float.min()方法的使用及代码示例

x33g5p2x  于2022-01-17 转载在 其他  
字(1.6k)|赞(0)|评价(0)|浏览(197)

本文整理了Java中java.lang.Float.min()方法的一些代码示例,展示了Float.min()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Float.min()方法的具体详情如下:
包路径:java.lang.Float
类名称:Float
方法名:min

Float.min介绍

暂无

代码示例

代码示例来源:origin: jMonkeyEngine/jmonkeyengine

/**
 * Position the GUI to the given location.
 * @param pos the position of the GUI.
 * @param dir the rotation of the GUI.
 * @param tpf the time per frame.
 */
private void positionTo(Vector3f pos, Quaternion dir, float tpf) {
  if (environment != null){
    Vector3f guiPos = guiQuadNode.getLocalTranslation();
    guiPos.set(0f, 0f, guiDistance);
    dir.mult(guiPos, guiPos);
    guiPos.x += pos.x;
    guiPos.y += pos.y + environment.getVRHeightAdjustment();
    guiPos.z += pos.z;        
    if( guiPositioningElastic > 0f && posMode != VRGUIPositioningMode.MANUAL ) {
      // mix pos & dir with current pos & dir            
      guiPos.interpolateLocal(EoldPos, guiPos, Float.min(1f, tpf * guiPositioningElastic));
      EoldPos.set(guiPos);
    }
  } else {
    throw new IllegalStateException("VR GUI manager is not attached to any environment.");
  }
}

代码示例来源:origin: exomiser/Exomiser

private Map<AlleleProperty, Float> parseSift(Map<AlleleProperty, Float> values, AlleleProperty key, String field) {
  String[] transcriptPredictions = field.split(";");
  if (transcriptPredictions.length == 1) {
    return parseValue(values, key, transcriptPredictions[0]);
  }
  float maxValue = 1;
  for (int i = 0; i < transcriptPredictions.length; i++) {
    String score = transcriptPredictions[i];
    if (!EMPTY_VALUE.equals(score)) {
      float value = Float.parseFloat(score);
      //The smaller the score the more likely the SNP has damaging effect.
      maxValue = Float.min(maxValue, value);
    }
  }
  if (maxValue < 1) {
    values.put(key, maxValue);
  }
  return values;
}

相关文章