MCPcopy Create free account
hub / github.com/Teneted/Tenet / checkFinite

Method checkFinite

src/main/java/org/bukkit/util/Vector.java:813–817  ·  view source on GitHub ↗

Check if each component of this Vector is finite. @throws IllegalArgumentException if any component is not finite

()

Source from the content-addressed store, hash-verified

811 * @throws IllegalArgumentException if any component is not finite
812 */
813 public void checkFinite() throws IllegalArgumentException {
814 NumberConversions.checkFinite(x, "x not finite");
815 NumberConversions.checkFinite(y, "y not finite");
816 NumberConversions.checkFinite(z, "z not finite");
817 }
818
819 /**
820 * Get the threshold used for equals().

Callers 7

rayTraceEntitiesMethod · 0.45
rayTraceBlocksMethod · 0.45
rayTraceMethod · 0.45
setVelocityMethod · 0.45
teleportMethod · 0.45
teleportMethod · 0.45
rayTraceMethod · 0.45

Calls 1

checkFiniteMethod · 0.95

Tested by

no test coverage detected