13 lines
311 B
Java
13 lines
311 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package com.mojang.math;
|
|
|
|
public class Constants {
|
|
public static final float PI = (float)Math.PI;
|
|
public static final float RAD_TO_DEG = 57.295776f;
|
|
public static final float DEG_TO_RAD = (float)Math.PI / 180;
|
|
public static final float EPSILON = 1.0E-6f;
|
|
}
|
|
|