List of utility methods to do Double Number Align
double | align(double min, double number, double max) aligns number between min and max (guarantees number stays within inclusive bounds of min and max) return Math.min(max, Math.max(min, number));
|
double | align(double min, double number, double max) aligns number between min and max (guarantees number stays within inclusive bounds of min and max) return Math.min(max, Math.max(min, number));
|