setY method

Vector3 setY(
  1. double y
)

Implementation

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

  return this;
}