Java Degree Convert to degreesToPercent(float n)

Here you can find the source of degreesToPercent(float n)

Description

degrees To Percent

License

Open Source License

Declaration


public static float degreesToPercent(float n) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {

    public static float degreesToPercent(float n) {
        return (Math.abs(n / 360f));
    }/* ww  w . ja v  a 2 s. c  o m*/
}

Related

  1. degreesDiff(double a1, double a2)
  2. degreeSin(double angle)
  3. degreesMinSecToDegrees(String position)
  4. degreesToDecimal(String input)
  5. degreesToMetres(double degrees)
  6. degreesToRA(double val)
  7. degreesToSexigessimal(double ra, double dec)
  8. degreesToString(final double value, final char positiveChar, final char negativeChar)
  9. toDecimalDegrees(String picaValue)