setX method

Vector3 setX(
  1. double x
)

Implementation

Vector3 setX(double x) {
  this.x = x;

  return this;
}