setZ method

Vector3 setZ(
  1. double z
)

Implementation

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

  return this;
}