floor method

Vector3 floor()

Implementation

Vector3 floor() {
  x = Math.floor(x).toDouble();
  y = Math.floor(y).toDouble();
  z = Math.floor(z).toDouble();

  return this;
}