This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public final class Mathf { | |
private Mathf() { | |
} | |
public static final float PI = 3.1415927f; | |
public static final float DEG2RAD = PI / 180f; | |
public static final float RAD2DEG = 180f / PI; | |
public static final float E = 2.7182818f; |