Skip to content

Instantly share code, notes, and snippets.

View itsdhanudev's full-sized avatar
🎯
Focusing

Dhanu itsdhanudev

🎯
Focusing
View GitHub Profile
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;