summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/Axis.java
blob: fd86d68d12a525d6d31fdc73385a4682e4f316be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.bukkit;

/**
 * Represents a mutually perpendicular axis in 3D Cartesian coordinates. In
 * Minecraft the x, z axes lie in the horizontal plane, whilst the y axis points
 * upwards.
 */
public enum Axis {
    /**
     * The x axis.
     */
    X,
    /**
     * The y axis.
     */
    Y,
    /**
     * The z axis.
     */
    Z;
}