random method

Vector2 random()

Implementation

Vector2 random() {
  x = Math.random();
  y = Math.random();

  return this;
}