MCPcopy Create free account
hub / github.com/DGVPSH/SlackOpen / abs_int

Method abs_int

src/main/java/net/minecraft/util/MathHelper.java:113–116  ·  view source on GitHub ↗

Returns the unsigned value of an int.

(int value)

Source from the content-addressed store, hash-verified

111 * Returns the unsigned value of an int.
112 */
113 public static int abs_int(int value)
114 {
115 return value >= 0 ? value : -value;
116 }
117
118 public static int ceiling_float_int(float value)
119 {

Callers 8

ModelRotationMethod · 0.95
checkLightForMethod · 0.95
func_177461_bMethod · 0.95
getGreatestDistanceMethod · 0.95
generateMethod · 0.95
getFrontMethod · 0.95
getHorizontalMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected