sub(a: Vector): Vector {
    this.x -= a.x;
    this.y -= a.y;
    this.z -= a.z;
    return this;