setY method

Vector2 setY(
  1. double y
)

Implementation

Vector2 setY(double y) {
  this.y = y;

  return this;
}