setX method

Vector4 setX(
  1. num x
)

Implementation

Vector4 setX(num x) {
  this.x = x;

  return this;
}