random method

Vector4 random()

Implementation

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

  return this;
}