SPIGOT-3283: Add finite checking util methods to Location / Vectors

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot
2017-06-02 18:43:50 +10:00
parent 2522c28ac9
commit 12570e1e28
2 changed files with 44 additions and 22 deletions

View File

@@ -7,7 +7,6 @@ import org.bukkit.Location;
import org.bukkit.World;
import org.bukkit.configuration.serialization.ConfigurationSerializable;
import org.bukkit.configuration.serialization.SerializableAs;
import static org.bukkit.util.NumberConversions.checkFinite;
/**
* Represents a mutable vector. Because the components of Vectors are mutable,
@@ -616,6 +615,17 @@ public class Vector implements Cloneable, ConfigurationSerializable {
return new BlockVector(x, y, z);
}
/**
* Check if each component of this Vector is finite.
*
* @throws IllegalArgumentException if any component is not finite
*/
public void checkFinite() throws IllegalArgumentException {
NumberConversions.checkFinite(x, "x not finite");
NumberConversions.checkFinite(y, "y not finite");
NumberConversions.checkFinite(z, "z not finite");
}
/**
* Get the threshold used for equals().
*