File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/template/floatCommon/org/spongepowered/math Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ public final class GenericMath {
2929 * @param angle2 The second angle
3030 * @return the positive angle difference
3131 */
32- public static float getDegreeDifference (final float angle1, final float angle2) {
32+ public static float degreeDifference (final float angle1, final float angle2) {
3333 return Math.abs(GenericMath.wrapAngleDeg(angle1 - angle2));
3434 }
3535
@@ -40,7 +40,7 @@ public final class GenericMath {
4040 * @param radian2 The second angle
4141 * @return the positive radian difference
4242 */
43- public static double getRadianDifference (final double radian1, final double radian2) {
43+ public static double radianDifference (final double radian1, final double radian2) {
4444 return Math.abs(GenericMath.wrapAngleRad(radian1 - radian2));
4545 }
4646
You can’t perform that action at this time.
0 commit comments