예제 #1
0
 /**
  * Gets the floored value of the Y component, indicating the block that this vector is contained
  * with.
  *
  * @return block y
  */
 public int getBlockY() {
   return NumberConversions.floor(y);
 }
예제 #2
0
 /**
  * Gets the floored value of the Z component, indicating the block that this vector is contained
  * with.
  *
  * @return block z
  */
 public int getBlockZ() {
   return NumberConversions.floor(z);
 }
예제 #3
0
 /**
  * Gets the floored value of the X component, indicating the block that this vector is contained
  * with.
  *
  * @return block X
  */
 public int getBlockX() {
   return NumberConversions.floor(x);
 }