summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/main/java/org/bukkit/Location.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/main/java/org/bukkit/Location.java b/src/main/java/org/bukkit/Location.java
index 5c5b3ba5..5c3d42cc 100644
--- a/src/main/java/org/bukkit/Location.java
+++ b/src/main/java/org/bukkit/Location.java
@@ -9,7 +9,12 @@ import org.bukkit.util.NumberConversions;
import org.bukkit.util.Vector;
/**
- * Represents a 3-dimensional position in a world
+ * Represents a 3-dimensional position in a world.
+ * <br>
+ * No constraints are placed on any angular values other than that they be
+ * specified in degrees. This means that negative angles or angles of greater
+ * magnitude than 360 are valid, but may be normalized to any other equivalent
+ * representation by the implementation.
*/
public class Location implements Cloneable, ConfigurationSerializable {
private World world;