setZ method

Vector4 setZ(
  1. double z
)

Implementation

Vector4 setZ(double z) {
  this.z = z;

  return this;
}