Java Utililty Methods Number Minus

List of utility methods to do Number Minus

Description

The list of methods to do Number Minus are organized into topic(s).

Method

floatminusPercent(float maxValue, float minusValue)
minus Percent
return 100 - ((minusValue / maxValue) * 100);
doubleminusPIO2(final double angRad)
minus PIO
if (angRad < Math.PI / 4) {
    return angRad - PIO2_LO - PIO2_HI;
} else {
    return angRad - PIO2_HI - PIO2_LO;