random method

Vector3 random()

Implementation

Vector3 random() {
  x = Math.random();
  y = Math.random();
  z = Math.random();

  return this;
}