floor method

Vector4 floor()

Implementation

Vector4 floor() {
  x = Math.floor(x);
  y = Math.floor(y);
  z = Math.floor(z);
  w = Math.floor(w);

  return this;
}