Skip to content

Commit

Permalink
JavaDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
6-BennyLi-9 committed Sep 14, 2024
1 parent 5f07528 commit d406225
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public static double intervalClip(double value,double min,double max){
return Math.min(Math.max(min,value),max);
}
/**
* @return 强制使value在(min,max)范围内,方法为“园滚”
* @return 强制使value在(min,max)范围内,方法为“园滚”,遇到歧义自动取正
*/
public static double roundClip(double value,double max){
double cache=value;
Expand Down

0 comments on commit d406225

Please sign in to comment.